action vtex_brand_list { label: "Get Brand List" description: "Retrieves all Brands registered in the store's Catalog. \n>⚠️ This route's response is limited to 20k results. If you need to obtain more results, please use the [Get Brand List](https://developers.vtex.com/vtex-rest-api/reference/catalog-api-get-brand-list) endpoint instead to get a paginated response. \n## Response body example \n \n```json \n[ \n { \n \"id\": 9280, \n \"name\": \"Brand\", \n \"isActive\": true, \n \"title\": \"Brand\", \n \"metaTagDescription\": \"Brand\", \n \"imageUrl\": null \n }, \n { \n \"id\": 2000000, \n \"name\": \"Orma Carbon\", \n \"isActive\": true, \n \"title\": \"Orma Carbon\", \n \"metaTagDescription\": \"Orma Carbon\", \n \"imageUrl\": null \n }, \n { \n \"id\": 2000001, \n \"name\": \"Pedigree\", \n \"isActive\": true, \n \"title\": \"Pedigree\", \n \"metaTagDescription\": \"\", \n \"imageUrl\": null \n } \n] \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/brand/list" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } } required: ["Accept", "Content-Type"] additionalProperties: false } output: { type: "array" description: "An array with all brands registered in the store." items: { type: "object" description: "Object containing Brand information." required: ["id", "name", "isActive", "imageUrl", "title", "metaTagDescription"] properties: { id: { type: "integer" description: "Brand's unique numerical identifier." } imageUrl: { type: "string" description: "URL of the brand's image." } isActive: { type: "boolean" description: "Defines if the brand is active (`true`) or not (`false`)." } metaTagDescription: { type: "string" description: "Meta Description for the Brand page. A brief description of the brand, displayed by search engines. Since search engines can only display less than 150 characters, we recommend not exceeding this character limit when creating the description." } name: { type: "string" description: "Brand name." } title: { type: "string" description: "Meta Title for the Brand page." } } } } }