JellypodJellypod
Episodes

Upload episode cover image

PUT
/episodes/{episode_id}/image

Upload or replace the episode's cover image. Send the raw image bytes as the request body with the appropriate Content-Type header.

Supported formats: JPEG, PNG, WebP. Maximum size: 10 MB.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

episode_id*string

The episode's unique identifier.

Formatuuid

Request Body

application/octet-stream

Raw image bytes. Set the Content-Type header to image/jpeg, image/png, or image/webp.

TypeScript Definitions

Use the request body type in TypeScript.

body*file
Formatbinary

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X PUT "https://api.jellypod.com/v1/episodes/497f6eca-6276-4993-bfeb-53cbbbba6f08/image" \  -H "Content-Type: application/octet-stream" \  -d 'string'
{
  "data": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "image_url": "http://example.com"
  }
}

Was this page helpful?