Brand
List brands
Brand
List brands
This endpoint lists your brands.
GET
/
v1
/
brand
/
list
curl --request GET \
--url https://api.sendo.dev/v1/brand/list \
--header 'Authorization: Bearer <token>'
{
"brands": [
{
"id": "h4cQ2gls",
"createdAt": "2023-12-12T12:33:33.630Z",
"updatedAt": "2023-12-12T12:33:33.630Z",
"status": "VERIFIED",
...
},
{
"id": "A8wm4k2s",
"createdAt": "2023-12-07T12:33:33.630Z",
"updatedAt": "2023-12-08T12:33:33.630Z",
"status": "VETTED",
...
}
And so on...
]
}
This endpoint lists your submitted brands. Brands in DRAFT
status will not be returned. Click here for more information about brands.
URL Params
The number of brands to return (default 10).
The number of brands to skip (i.e. offset).
Response
An array of brand objects returned.
The ID of the retrieved brand.
The time that the brand was created.
The time the brand was last updated.
Trust score if the brand is vetted.
The display name or DBA name of the brand.
The name of the brand’s legal entity.
The EIN for the brand’s legal entity.
The website URL for the brand.
The privacy policy URL for the brand.
Error message if the request fails.
{
"brands": [
{
"id": "h4cQ2gls",
"createdAt": "2023-12-12T12:33:33.630Z",
"updatedAt": "2023-12-12T12:33:33.630Z",
"status": "VERIFIED",
...
},
{
"id": "A8wm4k2s",
"createdAt": "2023-12-07T12:33:33.630Z",
"updatedAt": "2023-12-08T12:33:33.630Z",
"status": "VETTED",
...
}
And so on...
]
}
curl --request GET \
--url https://api.sendo.dev/v1/brand/list \
--header 'Authorization: Bearer <token>'
{
"brands": [
{
"id": "h4cQ2gls",
"createdAt": "2023-12-12T12:33:33.630Z",
"updatedAt": "2023-12-12T12:33:33.630Z",
"status": "VERIFIED",
...
},
{
"id": "A8wm4k2s",
"createdAt": "2023-12-07T12:33:33.630Z",
"updatedAt": "2023-12-08T12:33:33.630Z",
"status": "VETTED",
...
}
And so on...
]
}