> ## Documentation Index
> Fetch the complete documentation index at: https://docs.adspo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get brand details

> Returns full details for a brand including website intelligence and ad metrics.



## OpenAPI

````yaml GET /v1/brands/{brand_id}
openapi: 3.1.0
info:
  title: Adspo API
  version: 1.0.0
  description: >
    The Adspo API gives you programmatic access to ad creative data across
    brands.


    ## Authentication


    All endpoints require an API key passed in the `x-api-key` header.


    ```

    x-api-key: YOUR_API_KEY

    ```


    ## Rate limits


    - **120 requests per minute** per key. Exceeding this returns `429`.

    - **Credits per billing period** vary by plan. Each request costs 1 credit.
    Exceeding your quota returns `429` with `resets_at` indicating when it
    resets
servers:
  - url: https://api.adspo.co
    description: Production
security:
  - apiKey: []
paths:
  /v1/brands/{brand_id}:
    get:
      summary: Get brand details
      description: >-
        Returns full details for a brand including website intelligence and ad
        metrics.
      operationId: getBrand
      parameters:
        - name: brand_id
          in: path
          required: true
          description: The Facebook Ad Library page ID of the brand.
          schema:
            type: string
          example: '15087023444'
      responses:
        '200':
          description: Brand details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Brand'
              example:
                name: Nike
                category: Fashion & Apparel
                description: null
                domain: nike.com
                image_uri: https://r2.adspo.co/pages/15087023444.jpg
                ig_username: nike
                ig_followers: '297398825'
                facebook_likes: '39645492'
                facebook_url: https://www.facebook.com/nike/
                domain_traffic: '107785544'
                ads: 2080
                creatives: 614
                images:
                  ads: 1312
                  creatives: 374
                videos:
                  ads: 768
                  creatives: 240
                countries:
                  ads:
                    US: 4916
                    GB: 2186
                    AU: 2026
                  creatives:
                    US: 1921
                    GB: 837
                    AU: 825
                competitors:
                  - brand_id: '333513037263180'
                    name: Adidas
                    score: 0.89
                    image_uri: https://r2.adspo.co/pages/333513037263180.jpg
                verified: true
                updated_at: '2026-04-28T09:03:39Z'
                created_at: '2026-04-20T19:06:30Z'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Brand not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit or quota exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Brand:
      type: object
      description: Full brand details.
      properties:
        name:
          type: string
          description: Brand name.
        category:
          type: string
          description: Primary business category.
        description:
          type: string
          nullable: true
          description: Short brand description.
        domain:
          type: string
          description: Primary website domain.
        image_uri:
          type: string
          description: Brand profile image URL.
        ig_username:
          type: string
          nullable: true
          description: Instagram username.
        ig_followers:
          type: string
          nullable: true
          description: Instagram follower count.
        facebook_likes:
          type: string
          nullable: true
          description: Facebook page like count.
        facebook_url:
          type: string
          nullable: true
          description: Facebook page URL.
        domain_traffic:
          type: string
          nullable: true
          description: Estimated monthly website visits.
        ads:
          type: integer
          description: Total number of currently active ads.
        creatives:
          type: integer
          description: Total number of currently active creatives.
        images:
          type: object
          description: Active image counts split by ads and creatives.
          properties:
            ads:
              type: integer
              nullable: true
              description: Number of currently active ads using image creatives.
            creatives:
              type: integer
              nullable: true
              description: Number of currently active image creatives.
        videos:
          type: object
          description: Active video counts split by ads and creatives.
          properties:
            ads:
              type: integer
              nullable: true
              description: Number of currently active ads using video creatives.
            creatives:
              type: integer
              nullable: true
              description: Number of currently active video creatives.
        countries:
          type: object
          description: >-
            Active counts broken down by country code, split by ads and
            creatives.
          properties:
            ads:
              type: object
              nullable: true
              description: Active ad count per country code.
              additionalProperties:
                type: integer
            creatives:
              type: object
              nullable: true
              description: Active creative count per country code.
              additionalProperties:
                type: integer
        competitors:
          type: array
          nullable: true
          description: >-
            Brands identified as likely competitors based on category, country
            overlap, and content similarity.
          items:
            $ref: '#/components/schemas/Competitor'
        verified:
          type: boolean
          description: Whether this brand has been manually verified.
        updated_at:
          type: string
          description: When the brand's ad data was last refreshed.
        created_at:
          type: string
          description: When the brand was added to Adspo.
    Error:
      type: object
      properties:
        error:
          type: string
    Competitor:
      type: object
      properties:
        brand_id:
          type: string
          description: Facebook Ad Library page ID of the competitor.
        name:
          type: string
          description: Competitor brand name.
        score:
          type: number
          description: Similarity score (0–1). Higher means more likely a competitor.
        image_uri:
          type: string
          description: Competitor brand profile image URL.
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Adspo API key.

````