Zum Inhalt springen
GET /v1/articles

Browse and filter published articles

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/devto-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/devto-api/v1/articles" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/devto-api/v1/articles", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/devto-api/v1/articles");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/devto-api/v1/articles",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "page": 1,
        "count": 20,
        "articles": [
            {
                "id": 3793088,
                "url": "https://dev.to/nandan_das_369/orinide-v107-the-ai-finally-understands-your-whole-project-2nd4",
                "tags": [
                    "webdev",
                    "javascript",
                    "ai",
                    "opensource"
                ],
                "title": "OrinIDE v1.0.7 — The AI Finally Understands Your Whole Project",
                "author": {
                    "name": "Nandan Das",
                    "username": "nandan_das_369"
                },
                "comments": 4,
                "reactions": 11,
                "cover_image": "https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fcapsule-render.vercel.app%2Fapi%3Ftype%3Dwaving%26color%3D0%3A0B0614%2C50%3A6C2BD9%2C100%3AB45CFF%26height%3D220%26section%3Dheader%26text%3DOrinIDE%2520v1.0.7%26fontSize%3D60%26fontColor%3Dffffff%26fontAlignY%3D40%26fontAlign%3D50%26desc%3DThe%2520AI%2520finally%2520understands%2520your%2520whole%2520project%26descAlignY%3D62%26descSize%3D16%26descColor%3DD6A6FF%26descAlign%3D50",
                "description": "New in OrinIDE: project-wide AI context, surgical edits that don't rewrite your whole file, a skills system, HTML preview in chat, and a free image API. Built on Android with Termux.",
                "published_at": "2026-06-01T06:13:17Z",
                "reading_minutes": 5
            },
            {
                "id": 3710004,
                "url": "https://dev.to/accreditly/why-we-replaced-pdf-invoice-attachments-with-inline-png-receipts-1fga",
                "tags": [
                    "webdev",
                    "php",
                    "javascript",
                    "tutorial"
                ],
                "title": "Why we replaced PDF invoice attachments with inline PNG receipts",
                "author": {
                    "name": "Accreditly",
                    "username": "accreditly"
                },
                "comments": 0,
                "reactions": 3,
                "cover_image": null,
                "description": "We used to attach a PDF to every order confirmation email. The PDF was the invoice, generated...",
                "published_at": "2026-06-01T14:04:00Z",
                "reading_minutes": 6
            },
            {
                "id": 3796293,
                "url": "https://dev.to/martinhavel/i-built-a-free-browser-only-european-payment-qr-generator-and-an-mcp-server-11k",
                "tags": [
                    "showdev",
                    "mcp",
                    "javascript",
                    "opensource"
                ],
                "title": "I built a free, browser-only European payment QR generator (and an MCP server)",
                "author": {
                    "name": "Martin Havel",
                    
…