GET
/
v1
/
brand
/
{id}
Retrieve brand
curl --request GET \
  --url https://api.sendo.dev/v1/brand/{id} \
  --header 'Authorization: Bearer <token>'
{
  "brand": {
    "id": "h4cQ2gls",
    "createdAt": "2023-12-12T12:33:33.630Z",
    "updatedAt": "2023-12-12T12:33:33.630Z",
    "status": "VERIFIED",
    "entityType": "PRIVATE_PROFIT",
    "vetted": true,
    "trustScore": 73,
    "displayName": "Sendo AI",
    "entityName": "Winno Inc.",
    "ein": "12-3456789",
    "website": "https://sendo.dev",
    "privacyLink": "https://sendo.dev/privacy",
    "address": {
      "street": "584 Castro St #2028",
      "city": "San Francisco",
      "state": "CA",
      "postalCode": "94114",
      "country": "US"
    },
    "contact": {
      "firstName": "John",
      "lastName": "Smith",
      "phone": "+12061234567",
      "email": "support@sendo.dev"
    }
  }
}
This endpoint retrieves a brand. Click here to learn more.

Parameters

id
string
required
The ID of the brand to retrieve.

Response

brand
object
The contents of the brand.
error
string
Error message if the request fails.

Errors

If the request fails, it will return an HTTP error status code and an error field in the body with details. Full list of status codes here.
{
  "brand": {
    "id": "h4cQ2gls",
    "createdAt": "2023-12-12T12:33:33.630Z",
    "updatedAt": "2023-12-12T12:33:33.630Z",
    "status": "VERIFIED",
    "entityType": "PRIVATE_PROFIT",
    "vetted": true,
    "trustScore": 73,
    "displayName": "Sendo AI",
    "entityName": "Winno Inc.",
    "ein": "12-3456789",
    "website": "https://sendo.dev",
    "privacyLink": "https://sendo.dev/privacy",
    "address": {
      "street": "584 Castro St #2028",
      "city": "San Francisco",
      "state": "CA",
      "postalCode": "94114",
      "country": "US"
    },
    "contact": {
      "firstName": "John",
      "lastName": "Smith",
      "phone": "+12061234567",
      "email": "support@sendo.dev"
    }
  }
}