Zum Inhalt springen
GET /v1/project

A project's engagement stats

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/scratch-api/v1/project" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scratch-api/v1/project", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scratch-api/v1/project");
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/scratch-api/v1/project",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "id": 10128407,
        "url": "https://scratch.mit.edu/projects/10128407",
        "image": "https://cdn2.scratch.mit.edu/get_image/project/10128407_480x360.png",
        "loves": 542929,
        "title": "Paper Minecraft v11.7 (Minecraft 2D)",
        "views": 66302564,
        "author": "griffpatch",
        "shared": "2014-12-01T12:55:01.000Z",
        "created": "2013-05-04T19:56:50.000Z",
        "remixes": 71537,
        "favorites": 483338,
        "description": "Sorry too many comments are causing the scratch servers to wobble... Commenting has had to be temporarily disabled! ★ Subscribe to me on YouTube for our my helpful videos on Scratch coding :) - Search up \"griffpatch\". ★ Scratch auto disabled comments on this project because it was slowing things dow",
        "instructions": "Modding Guide: ▶️ https://youtu.be/PexNsUvqD5w [1 to 9] - Select Item [Click] - Place or Mine [WASD] - Move / Jump [E] - Open/Close Inventory [E+hover] - Open / Close Chest, Crafting Table, Door [Spac"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:16.630Z",
        "request_id": "8fab1000-1ffb-4b53-870f-8ec77c2e4377"
    },
    "status": "ok",
    "message": "Project retrieved successfully",
    "success": true
}