List brands. Filter by access to see which brands you are partnered with.

Method: GET (paginated)

Parameters:

Response:

{
  "brands": [
    {
      "brandId": "string",
      "brandName": "string",
      "bio": "string",
      "image": "string",
      "access": true,
      "url": "string",
      "marketplace": "amazon.com"
    }
  ],
  "cursor": "string"
}

Errors:

Example:

const API_KEY = "LEVANTA_API_KEY";
const ENDPOINT = "<https://app.levanta.io/api/creator/v1/brands>";

let cursor;
const brands = [];

// Set up query parameters
const parameters = new URLSearchParams();
parameters.set("limit", 50); // Get 50 brands per response
parameters.set("access", "true"); // Only brands with active partnership

// Paginate through brands, stop when a value of null is returned for "cursor"
while (cursor !== null) {
    const response = await fetch(`${ENDPOINT}?${parameters.toString()}`, {
			method: "GET",
			headers: {
				Authorization: `Bearer ${API_KEY}`
			}
		});
	  const json = await response.json();
		// Store brands returned
	  brands.push(...json.brands);
    cursor = json.cursor;
    if (cursor) parameters.set("cursor", cursor);
}
console.log(brands);