extractr docs
Platform

Provider catalog

GET
/catalog

Every provider and endpoint with its credit price. Public — no authentication required.

Response Body

application/json

curl -X GET "https://example.com/catalog"
{  "providers": [    {      "id": "spotify",      "name": "Spotify",      "category": "music",      "description": "string",      "endpoints": [        {          "name": "get_track",          "method": "GET",          "path": "/spotify/get_track",          "description": "string",          "credits": 2        }      ]    }  ],  "totalEndpoints": 20}