Skip to content
GET /v1/remixes

The projects remixed from a project

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/scratch-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 20,
        "remixes": [
            {
                "id": 10285001,
                "url": "https://scratch.mit.edu/projects/10285001",
                "image": "https://cdn2.scratch.mit.edu/get_image/project/10285001_480x360.png",
                "loves": 295,
                "title": "Paper Minecraft parkour w/t lag test 1.0",
                "views": 68111,
                "author": "J_man2468",
                "shared": "2013-05-17T12:42:13.000Z",
                "created": "2013-05-17T12:17:27.000Z",
                "remixes": 0,
                "favorites": 270,
                "description": "griffpach, and my proggraming one teacher, mr miller",
                "instructions": "*** Latest Update --> sprint feacher, double a/d*** *** Keys *** A & D - Move Left and right, double klick to sprint Space or W - Jump Click - Mine (Dig) - At present WAY to fast - but fun ;) ??? - Pl"
            },
            {
                "id": 10374849,
                "url": "https://scratch.mit.edu/projects/10374849",
                "image": "https://cdn2.scratch.mit.edu/get_image/project/10374849_480x360.png",
                "loves": 138,
                "title": "Paper Minecraft Test v2.8",
                "views": 45091,
                "author": "CrazyBeast",
                "shared": "2013-06-11T00:08:22.000Z",
                "created": "2013-05-21T22:47:00.000Z",
                "remixes": 0,
                "favorites": 133,
                "description": null,
                "instructions": "*** Latest Update --> Lighting Engine, Torches, Pickaxe (press 5), Placeable Blocks, Minecraft Style Water Flows, Growing Grass, Falling Gravel *** *** Keys *** A & D - Move Left and right 1, 2, 3, 4,"
            },
            {
                "id": 10377962,
                "url": "https://scratch.mit.edu/projects/10377962",
                "image": "https://cdn2.scratch.mit.edu/get_image/project/10377962_480x360.png",
                "loves": 24,
                "title": "Paper Minecraft Test v2.8 remix",
                "views": 7124,
                "author": "chellie903",
                "shared": "2013-05-22T02:27:44.000Z",
                "created": "2013-05-22T02:20:38.000Z",
                "remixes": 0,
                "favorites": 18,
                "description": "I give all the credit to griffpatch, because this is just a remix. I wanted to make this remix the exact same as the original because this game is so awesome and hard to believe that someone actually made this from nothing! I think everybody on scratch should see this game. :D",
                "instructions": "*** Latest Update --> Lighting Engine, Torches, Pickaxe (press 5), Placeable Blocks, Minecraft Style Water Flows, Growing Grass, Falling Gravel *** *** Keys *** A & D - Move Left and right 1, 2, 3, 4,"
            },
            {
                "id": 10381942,
                "url": "https://scratch.mit.edu/projects/10381942",
        
…