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

# List Targeting Properties

> Returns the creator properties available for campaign targeting. Use a property's `id` in targeting conditions; fetch an `option` property's allowed values from its values endpoint.



## OpenAPI

````yaml GET /targeting/properties
openapi: 3.1.0
info:
  title: Launchpoint Buyer API
  description: The API Launchpoint brands and agencies can use to manage their campaigns
  license:
    name: MIT
    identifier: MIT
  version: 2026-07
servers:
  - url: https://api.launchpoint.sh/2026-07
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Create and manage campaigns, review creators and content, and read
      performance data
paths:
  /targeting/properties:
    get:
      tags:
        - Campaigns
      summary: List targeting properties
      description: >-
        Returns the creator properties available for campaign targeting. Use a
        property's `id` in targeting conditions; fetch an `option` property's
        allowed values from its values endpoint.
      operationId: listTargetingProperties
      responses:
        '200':
          description: The available targeting properties
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TargetingPropertyList'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    TargetingPropertyList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TargetingProperty'
    TargetingProperty:
      type: object
      description: A creator property campaigns can target on
      properties:
        id:
          type: string
          description: >-
            Use as `property` in a targeting condition. Opaque: pass it back
            exactly as returned (may be a UUID or a short slug like
            `followers`).
          example: 877972f8-af4b-4918-95df-d35377234817
        name:
          type: string
          example: Gender
        kind:
          type: string
          description: >-
            `option` properties match against values from the property's values
            list. `number` properties match against ranges encoded as
            `"min-max"` strings (e.g. `"10000-50000"` followers).
          enum:
            - option
            - number
          example: option
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
          description: The HTTP status code
        message:
          type: string
          description: >-
            Human-readable explanation, naming the offending field where
            applicable
        code:
          type: string
          description: >-
            Machine-readable error code, e.g. `invalid_state_transition`,
            `missing_scope`, `already_reviewed`
          example: invalid_state_transition
  responses:
    Unauthorized:
      description: The API key is missing, unknown, or revoked (`unauthenticated`)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    TooManyRequests:
      description: >-
        The rate limit was exceeded (`rate_limited`). Wait for the number of
        seconds in the `Retry-After` header before retrying.
      headers:
        Retry-After:
          description: Seconds to wait before retrying.
          schema:
            type: integer
        X-RateLimit-Limit:
          description: Requests allowed per minute for this key.
          schema:
            type: integer
        X-RateLimit-Remaining:
          description: Requests remaining in the current window.
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````