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

# Get Brand

> Retrieve detailed information about a specific brand.



## OpenAPI

````yaml GET /v1/brand/{brand_id}
openapi: 3.1.0
info:
  title: urlDNA API
  description: >-
    urlDNA API documentation. This API allows you to scan, analyze, and retrieve
    insights about URLs, helping to detect potential threats such as phishing,
    malware, and scams.
  version: 1.0.0
servers:
  - url: https://api.urldna.io
security: []
paths:
  /v1/brand/{brand_id}:
    get:
      tags:
        - Brand Monitoring
      summary: Get Brand
      description: Retrieve detailed information about a specific brand.
      operationId: get_brand_v1_brand__brand_id__get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            title: Brand Id
        - name: authorization
          in: header
          required: true
          schema:
            type: string
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Brand'
        '401':
          description: 'Unauthorized: API Key is missing or invalid.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '404':
          description: 'Not Found: Object not found.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '405':
          description: >-
            Method Not Allowed: The requested HTTP method is not supported for
            this endpoint.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: 'Too Many Requests: Rate limit exceeded.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '500':
          description: 'Internal Server Error: An unexpected error occurred.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
components:
  schemas:
    Brand:
      properties:
        id:
          type: string
          title: Id
          description: Unique brand identifier.
        name:
          type: string
          title: Name
          description: The official name of the brand.
        private_brand:
          type: boolean
          title: Private Brand
          description: When true, brand is visible only to the creating user.
        visibility:
          $ref: '#/components/schemas/BrandVisibility'
          description: >-
            Defines the access level of the brand data. 'PREMIUM' brands require
            a subscription to access full intelligence, while 'FREE' brands are
            publicly available.
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
          description: >-
            The industry sector or vertical the brand belongs to. This is a
            generic classification such as 'Retail & E-commerce', 'FinTech,
            Crypto & Blockchain', or 'Technology & Telecom'.
      type: object
      required:
        - id
        - name
        - private_brand
        - visibility
      title: Brand
    APIError:
      properties:
        detail:
          type: string
          title: Detail
          example: Error description message
      type: object
      required:
        - detail
      title: APIError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrandVisibility:
      type: string
      enum:
        - PREMIUM
        - FREE
      title: BrandVisibility
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````