Jellypod Docs

Create a source from a URL, YouTube link, or text payload

POST
/v1/sources

Authorization

bearerAuth
AuthorizationBearer <token>

API key issued from /settings/api-keys in the Jellypod studio. Send as Authorization: Bearer <key>.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://api.jellypod.com/v1/sources" \  -H "Content-Type: application/json" \  -d '{    "type": "url",    "url": "http://example.com"  }'
{
  "data": {
    "id": "string",
    "title": "string",
    "type": "string",
    "status": "string",
    "metadata": null,
    "error_message": "string",
    "created_at": "string",
    "updated_at": "string"
  }
}

Was this page helpful?