Skip to main content
GET
/
v1
/
video
/
shows
/
{id}
GetShow
curl --request GET \
  --url https://sdk.anghami.com/v1/video/shows/{id}
{
  "show": {
    "id": {
      "value": "<string>"
    },
    "title": {
      "value": "<string>",
      "originalValue": "<string>"
    },
    "description": {
      "value": "<string>",
      "originalValue": "<string>"
    },
    "genres": [
      "<string>"
    ],
    "seasonCount": 123,
    "cast": [
      {
        "id": {
          "value": "<string>"
        },
        "name": {
          "value": "<string>",
          "originalValue": "<string>"
        },
        "role": "<string>",
        "profileImageUrl": "<string>",
        "isLead": true
      }
    ],
    "rating": "CONTENT_RATING_UNSPECIFIED",
    "network": "<string>",
    "artwork": [
      {
        "url": "<string>",
        "width": 123,
        "height": 123
      }
    ],
    "trailerUrl": "<string>",
    "releaseYear": 123,
    "isOngoing": true
  },
  "seasons": [
    {
      "id": {
        "value": "<string>"
      },
      "seasonNumber": 123,
      "title": {
        "value": "<string>",
        "originalValue": "<string>"
      },
      "episodeCount": 123,
      "artwork": [
        {
          "url": "<string>",
          "width": 123,
          "height": 123
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sdk.anghami.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string

OAuth 2.0 Bearer token for user-authenticated requests. Format: Bearer <access_token>. Optional if x-api-key is provided.

Example:

"Bearer eyJhbGciOiJSUzI1NiIs..."

x-api-key
string

API key for server-to-server access without user context. Optional if Authorization is provided.

Example:

"ang_live_..."

Accept-Language
string

Preferred locale for localized content (BCP 47). Determines which language variant is returned for LocalizedString fields.

Example:

"ar"

Path Parameters

id
string
required

Unique identifier of the show to retrieve.

Response

Successful response

GetShowResponse is the response message containing the requested show along with season summaries for navigation.

show
object

Show represents a television series or web series in the video catalog. Use GetShow to retrieve full metadata including season summaries for navigation.

seasons
object[]