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

# Get apiv1contentbrands lang



## OpenAPI

````yaml https://app.getbrandkarma.com/api/openapi/v1.json get /api/v1/content/brands/{brandId}/lang/{lang}
openapi: 3.1.1
info:
  title: BrandKarma Content Delivery API
  description: >-
    Retrieve and integrate AI-optimized content into your website or
    application. Authenticate with your API key (passed as Bearer token) to
    access published content, categories, and metadata for your brand.
  contact:
    name: BrandKarma Support
    url: https://getbrandkarma.com
    email: support@getbrandkarma.com
  version: v1
servers:
  - url: https://app.getbrandkarma.com/
security: []
tags:
  - name: Content Delivery
paths:
  /api/v1/content/brands/{brandId}/lang/{lang}:
    get:
      tags:
        - Content Delivery
      parameters:
        - name: brandId
          in: path
          required: true
          schema:
            type: string
        - name: lang
          in: path
          required: true
          schema:
            type: string
        - name: page
          in: query
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
        - name: pageSize
          in: query
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PagedReadDtoOfContentItemReadDto'
            application/json:
              schema:
                $ref: '#/components/schemas/PagedReadDtoOfContentItemReadDto'
            text/json:
              schema:
                $ref: '#/components/schemas/PagedReadDtoOfContentItemReadDto'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    PagedReadDtoOfContentItemReadDto:
      type: object
      properties:
        page:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        pageSize:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        totalCount:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int64
        data:
          type: array
          items:
            $ref: '#/components/schemas/ContentItemReadDto'
    ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
        title:
          type:
            - 'null'
            - string
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int32
        detail:
          type:
            - 'null'
            - string
        instance:
          type:
            - 'null'
            - string
    ContentItemReadDto:
      required:
        - id
        - title
        - slug
        - language
        - description
        - content
        - tags
        - categoryId
        - category
        - publishedDate
        - status
        - createdAt
        - updatedAt
        - imageUrl
        - metaTitle
        - metaDescription
        - primaryKeyword
        - translationGroupId
        - isSourceLanguageDocument
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the content item.
        title:
          type: string
          description: The display title of the content item.
        slug:
          type: string
          description: >-
            URL-friendly slug, unique per brand. Use this to build permalink
            URLs.
        language:
          type: string
          description: ISO 639-1 language code (e.g., "en", "de").
        description:
          type: string
          description: >-
            Short summary or excerpt of the content, suitable for meta
            descriptions or list views.
        content:
          type: string
          description: The full content body in HTML format.
        tags:
          type: array
          items:
            type: string
          description: List of tags for filtering and grouping content.
        categoryId:
          type: string
          description: ID of the category this content belongs to.
        category:
          type: string
          description: Human-readable name of the category.
        publishedDate:
          type:
            - 'null'
            - string
          description: Date the content was published. Null if not yet published.
          format: date-time
        status:
          type: string
          description: 'Publication status: Draft, Published, or Archived.'
        createdAt:
          type: string
          description: Timestamp when the content was first created.
          format: date-time
        updatedAt:
          type: string
          description: Timestamp of the most recent update.
          format: date-time
        imageUrl:
          type:
            - 'null'
            - string
          description: URL of the featured image, served from the BrandKarma CDN.
        metaTitle:
          type:
            - 'null'
            - string
          description: SEO meta title. Falls back to Title if not set.
        metaDescription:
          type:
            - 'null'
            - string
          description: SEO meta description. Falls back to Description if not set.
        primaryKeyword:
          type:
            - 'null'
            - string
          description: Primary target keyword for SEO tracking.
        translationGroupId:
          type: string
          description: >-
            Groups translations of the same content together. All language
            variants share this ID.
          format: uuid
        isSourceLanguageDocument:
          type: boolean
          description: >-
            True if this is the original language version; false if it's a
            translation.
        brief:
          type:
            - 'null'
            - string
        internalTags:
          type:
            - 'null'
            - array
          items:
            type: string
        keywordSearchVolume:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: >-
            Monthly search volume for the primary keyword (from SEO data
            provider).
          format: int32
        keywordDifficulty:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$
          type:
            - 'null'
            - number
            - string
          description: Keyword difficulty score (0-100) for the primary keyword.
          format: double
        gscClicks:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: Google Search Console clicks in the last reporting period.
          format: int32
        gscPosition:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$
          type:
            - 'null'
            - number
            - string
          description: Average Google Search Console position for this content.
          format: double
        gscImpressions:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: Google Search Console impressions in the last reporting period.
          format: int32

````