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

# Get positioning match

> Returns positioning counts, resolved brand names, daily counts and share_of_attribute. Share is the primary brand count divided by brand_counts plus another_product, excluding several and nobody. Below ten named-product assignments the share is null.



## OpenAPI

````yaml /openapi.json get /projects/{projectId}/attributes/match
openapi: 3.1.0
info:
  title: DevTune API
  version: 2.0.0
  description: >-
    API for programmatic access to your AI visibility data, webhook
    subscriptions, and automation workflows. Use this API to integrate DevTune
    data into CI/CD pipelines, BI tools, AI agents, and operational systems.
servers:
  - url: https://devtune.ai/api/v2
    description: Production
security:
  - bearerAuth: []
paths:
  /projects/{projectId}/attributes/match:
    get:
      summary: Get positioning match
      description: >-
        Returns positioning counts, resolved brand names, daily counts and
        share_of_attribute. Share is the primary brand count divided by
        brand_counts plus another_product, excluding several and nobody. Below
        ten named-product assignments the share is null.
      operationId: getAttributeMatch
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: window
          in: query
          schema:
            type: integer
            enum:
              - 30
              - 90
            default: 30
        - name: platform
          in: query
          schema:
            type: string
            minLength: 1
            maxLength: 100
        - name: intent
          in: query
          schema:
            type: string
            minLength: 1
            maxLength: 100
      responses:
        '200':
          description: Positioning
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/AttributeMatchData'
                  meta:
                    $ref: '#/components/schemas/Meta'
                required:
                  - data
                  - meta
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '429':
          $ref: '#/components/responses/RateLimitExceededError'
components:
  schemas:
    AttributeMatchData:
      type: object
      properties:
        current_set_id:
          type:
            - string
            - 'null'
          format: uuid
          description: >-
            Current competitor set covered by the totals, or null when no set is
            recorded.
        window:
          type: object
          properties:
            days:
              type: integer
              enum:
                - 30
                - 90
            from:
              type: string
              format: date
            to:
              type: string
              format: date
          required:
            - days
            - from
            - to
        series_started_on:
          type: string
          format: date
        competitor_changes:
          type: array
          items:
            type: string
            format: date
        attributes:
          type: array
          items:
            $ref: '#/components/schemas/PositioningMatchCell'
        daily:
          type: array
          description: >-
            Each trend point identifies its competitor set. A day can contain
            multiple points for the same statement. Keep sets separate and show
            a break when competitors change, rather than a jump.
          items:
            $ref: '#/components/schemas/PositioningMatchDailyCell'
      required:
        - current_set_id
        - window
        - series_started_on
        - competitor_changes
        - attributes
        - daily
    Meta:
      type: object
      properties:
        timestamp:
          type: string
          format: date-time
        projectId:
          type: string
          format: uuid
    PositioningMatchCell:
      type: object
      properties:
        attribute_id:
          type: string
          format: uuid
        statement:
          type: string
        kind:
          type: string
          enum:
            - positioning
        status:
          type: string
          enum:
            - active
            - archived
        series_started_on:
          type: string
          format: date
        eligible:
          type: integer
          minimum: 0
        scored:
          type: integer
          minimum: 0
        abstained:
          type: integer
          minimum: 0
        brand_counts:
          type: object
          additionalProperties:
            type: integer
            minimum: 0
        another_product:
          type: integer
          minimum: 0
        several:
          type: integer
          minimum: 0
        nobody:
          type: integer
          minimum: 0
        brands:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                format: uuid
              name:
                type:
                  - string
                  - 'null'
            required:
              - id
              - name
        share_of_attribute:
          type:
            - number
            - 'null'
          minimum: 0
          maximum: 1
          description: >-
            Primary brand count divided by brand_counts plus another_product.
            Null below ten assignments or when the primary brand is unavailable.
        day:
          type: string
          format: date
          description: Present on daily cells.
      required:
        - attribute_id
        - statement
        - kind
        - status
        - series_started_on
        - eligible
        - scored
        - abstained
        - brand_counts
        - another_product
        - several
        - nobody
        - brands
        - share_of_attribute
    PositioningMatchDailyCell:
      allOf:
        - $ref: '#/components/schemas/PositioningMatchCell'
        - type: object
          properties:
            competitor_set_id:
              type: string
              format: uuid
              description: >-
                Competitor set used for this trend point. The zero UUID means no
                competitor set was recorded.
            is_current_set:
              type: boolean
              description: Whether this trend point uses the current competitor set.
          required:
            - day
            - competitor_set_id
            - is_current_set
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        status:
          type: integer
      required:
        - error
        - message
        - status
  responses:
    BadRequestError:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ForbiddenError:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFoundError:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimitExceededError:
      description: Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          $ref: '#/components/headers/X-RateLimit-Limit'
        X-RateLimit-Remaining:
          $ref: '#/components/headers/X-RateLimit-Remaining'
        X-RateLimit-Reset:
          $ref: '#/components/headers/X-RateLimit-Reset'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  headers:
    X-RateLimit-Limit:
      description: Maximum requests per window
      schema:
        type: integer
    X-RateLimit-Remaining:
      description: Requests remaining in current window
      schema:
        type: integer
    X-RateLimit-Reset:
      description: Unix timestamp when the window resets
      schema:
        type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key with dtk_live_ prefix. Obtain it from API Keys in the account
        sidebar. New keys start with all supported scopes selected for the
        chosen project, and you can narrow them to specific read/write scopes as
        needed.

````