JellypodJellypod
Sources

Get a source

GET
/sources/{source_id}

Retrieve a single source by ID. Use this to poll processing status.

Authorization

BearerAuth
AuthorizationBearer <token>

Jellypod API key. Create and manage keys from the Jellypod dashboard under Settings → API Keys.

In: header

Path Parameters

source_id*string

The source's unique identifier.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.jellypod.com/v1/sources/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "data": {
    "id": "b7c8d9e0-f1a2-3456-bcde-f12345678901",
    "title": "OpenAI GPT-5 Announcement",
    "type": "url",
    "status": "completed",
    "metadata": {
      "url": "https://openai.com/blog/gpt-5"
    },
    "error_message": null,
    "created_at": "2026-02-28T09:00:00.000Z",
    "updated_at": "2026-02-28T09:01:00.000Z"
  }
}

Was this page helpful?