<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Get-Brand-by-ID",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "rest:apple-ads-platform-api:get:business-brands-{}"
  },
  "title" : "Get Brand by ID"
}
-->

# Get Brand by ID

Retrieve a single brand by its unique identifier.

## Discussion

This endpoint retrieves a single brand by its ID. The brand `id` in the response is the same value you use as `promotedObjectId` when creating a `BUSINESS_BRAND` campaign.

## Payload Examples

**Get Brand:**

### Request

Retrieves the brand with the given ID and returns its country or region, categories, and current eligibility status.

```
GET https://api.ads.apple.com/v1/business-brands/9151314442816847872
```

### Response

```json
{
 "result": {
   "id": "9151314442816847872",
   "name": "AwayFinder",
   "countryOrRegion": "US",
   "categories": [
     "dining.restaurant"
   ],
   "eligibility": {
     "status": "ELIGIBLE"
   }
 }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)