Skip to content

Project Listing

This API returns all the titles published to the authenticated user and their related assets.

Headers

Header Value
Authorization JWT token

Endpoint

GET v2/watch/content/projects

Query Parameters

Parameter Type Required Description
q String Optional Filter projects by substring in the name.
genre String Optional Filter projects by genre.
brand String Optional Filter projects by brand. If not passed, the projects from the all-encompassing allprojects brand (i.e., all projects published to the user/audience) will be returned.
page Integer Optional Page number of the results. The default value is 1.
limit Integer Optional Number of results per page. The default value is 12. You can set it up to 30.

Response Body

    {
        "count": 30,
        "previous": "example.com",
        "next": "example.com",
        "results": [
            {
                "key": "ABCDXYZ",
                "name": "Acme Corp",
                "poster": "example.com"
            }
            .
            .
        ]
    }
Field Type Description
count Integer The total count of results with pagination.
previous URL Link to the previous set of results.
next URL Link to the next set of results.
key String The unique identifier for the project.
name String Name of the project.
poster String Link for the project poster.

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