Skip to content

GET Brands

GET /brands

Lists all brands the authenticated user has access to.

ParameterTypeDefaultMinMaxDescription
pageinteger11-Page number.
per_pageinteger101100Items per page.
Terminal window
curl "https://nuelink.com/api/public/v1/brands?per_page=10&page=1"
-H "Authorization: Bearer YOUR_API_KEY"

Response: 200 OK

{
"status": "success",
"data": [
{
"id": 13493,
"title": "Fernwood Botanicals",
"description": "Main workspace for Fernwood Botanicals social channels",
"timezone": "America/New_York",
"createdAt": "2023-07-20T13:05:31.000000Z",
"updatedAt": "2026-04-15T13:45:23.000000Z"
}
],
"pagination": {
"currentPage": 1,
"perPage": 10,
"total": 2,
"lastPage": 1,
"nextPageUrl": null,
"prevPageUrl": null
}
}
FieldTypeDescription
idintegerBrand identifier. Use this as {brandId} in URLs.
titlestringDisplay name of the brand.
descriptionstring | nullOptional free-text description.
timezonestringIANA timezone used by this brand for scheduling.
createdAtstringISO 8601 timestamp.
updatedAtstringISO 8601 timestamp.