Brand Listing
The brand listing endpoint returns all the brands linked to the titles published to the authenticated user. Assets such as posters, banners, video thumbnails, and metadata (e.g., cast and crew information, genres) can be customized for each brand.
Header |
Value |
Authorization |
JWT token |
Endpoint
GET v2/watch/content/brands
Query Parameters
Parameter |
Type |
Required |
Description |
q |
String |
Optional |
Filter brands by substring in the name. |
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": null,
"next": null,
"results": [
{
"key": "brd-01j1pagnn41xv3hwg8v3sqbJcxx",
"keyword": "abc_productions",
"name": "ABC Productions",
"logo": "https://media.indee.tv/FYC+Web+Watch+Assets+-+ABC/FYC+-+BG+image+-+2650X1440+-+Web.jpg?Expires=1719599515&Signature=GcLv14B0Nb3qI3WMwfMNV4CoY-NV-DjFq-4Mv1hp4qKDaVsExB8~OC24a-nYpgNr009MzldqPjJJ7CK6sYq5Z9Fp81BQumNFVXOUiWXi~RJqtT4wx4NGyQouOwWe9KJ9NwaaJtAE7wA7M8UmHRcsKG5My-~rMQCXRM4sr0Wkn6Nssch7AJspUMB8bwl3MXdaFncTaNlgD~Dl1QblWb2b0jM~paOvofls9Q6qTceESvb5C1ClabDO-EBeiNHYfLb-A0No37Hpm7leLUC3D5PkRyQDb4Wy1G7gCKUtD70mfVFIYNwUf8uprgRyMnBPMkrRm9Btm~KHj2VEx0~J6HwGuw__&Key-Pair-Id=K3HM5NS5Q9EXLB",
"header": "https://media.indee.tv/FYC+Web+Watch+Assets+-+ABC/FYC+-+BG+image+-+2650X1440+-header.jpg?Expires=1719599515&Signature=GcLv14B0Nb3qI3WMwfMNV4CoY-NV-DjFq-4Mv1hp4qKDaVsExB8~OC24a-nYpgNr009MzldqPjJJ7CK6sYq5Z9Fp81BQumNFVXOUiWXi~RJqtT4wx4NGyQouOwWe9KJ9NwaaJtAE7wA7M8UmHRcsKG5My-~rMQCXRM4sr0Wkn6Nssch7AJspUMB8bwl3MXdaFncTaNlgD~Dl1QblWb2b0jM~paOvofls9Q6qTceESvb5C1ClabDO-EBeiNHYfLb-A0No37Hpm7leLUC3D5PkRyQDb4Wy1G7gCKUtD70mfVFIYNwUf8uprgRyMnBPMkrRm9Btm~KHj2VEx0~J6HwGuw__&Key-Pair-Id=K3HM5NS5Q9EXX"
}
]
}
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 |
Unique key of the brand. |
keyword |
String |
List of the different brands available to the user. |
name |
String |
Name of the brand. |
logo |
String |
Logo image for the brand. |
header |
String |
Header image for the brand. |
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 |