TCR Developer Portal
Breadcrumbs

Retrieve a Single Brand Record

Retrieves a single brand record, as long as the brandId is known. Useful for determining whether a brand is active or deleted, or to verify that certain optional attributes have been applied.

Request

GET /brand/{brandId}

curl -X 'GET' \
  'https://csp-api-staging.campaignregistry.com/v2/brand/BABC123' \
  -H 'accept: application/json'

Response

JSON
{
  "entityType": "NON_PROFIT",
  "cspId": "S123ABC",
  "brandId": "B123ABC",
  "status": "ACTIVE",
  "displayName": "Example Brand",
  "companyName": "Example Brand, Inc.",
  "ein": "000000XXX",
  "einIssuingCountry": "US",
  "phone": "+15555555555",
  "street": "100 Main St",
  "city": "Ann Arbor",
  "state": "MI",
  "postalCode": "48105",
  "country": "US",
  "email": "johndoe@example.com",
  "website": "http://www.examplebrand.com",
  "brandRelationship": "BASIC_ACCOUNT",
  "vertical": "EDUCATION",
  "universalEin": "US_000000XXX",
  "optionalAttributes": {
    "taxExemptStatus": "501c3"
  },
  "mock": false,
  "identityStatus": "VERIFIED",
  "createDate": "2025-06-10T19:16:02.000Z",
  "businessContactEmail": "johndoe@example.com"
}