GET
/
brand
/
search
import BrandDev from 'brand.dev';

const client = new BrandDev({
  apiKey: process.env['BRAND_DEV_API_KEY'], // This is the default and can be omitted
});

async function main() {
  const response = await client.brand.search({ query: 'query' });

  console.log(response);
}

main();
[
  {
    "logo": "<string>",
    "title": "<string>",
    "domain": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

query
string
required

Query string to search brands

Response

200
application/json

Successful response

The response is of type object[].