Skip to content

Project Details

This API returns the details of the project.

Endpoint

GET v2/watch/content/projects/{project_key}

Headers

Header Value
Authorization JWT token

Response Body

    {
        "key": "prj-01j1pagnn41xv3hwg8v3sqbmxx",
        "name": "ABC",
        "episodic": true,
        "seasons": 5,
        "poster": null,
        "banner": null,
        "description": "Documentary series on wildlife",
        "cast_and_crew": [
            {
                "name": "Mark",
                "role": "Lead Actor",
            },
            .
            .
        ],
        "status_code": "W0000"
    }
Field Type Description
key String The unique key for the project.
name String Name of the project.
episodic Boolean Whether or not the project is episodic.
seasons Integer List of seasons if the project is episodic. Empty array is returned if the project is not episodic.
poster URL Link for the project poster image.
banner URL Link for the project banner image.
description String Description for the project.
cast_and_crew String Cast and crew details for the project.
name String Nested field in cast and crew. Name of the cast/crew member.
role String Nested field in cast and crew. Role of the cast/crew member.

Status Codes

Indee status code HTTP Response Code Description
W0000 HTTP 200 Success
W2000 HTTP 401 Authorization header was either not passed or there was some issue parsing it
W2003 HTTP 401 Invalid auth token
W2101 HTTP 403 API key not authorized to perform this action
W5001 HTTP 429 Rate limited
W5000 HTTP 500 Unknown server error occurred