> ## 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 Property Values

> Returns the allowed values for an `option` targeting property. Large catalogs (locations, schools) are paginated — use `search` to narrow. Returns 404 for `number` properties, which take `"min-max"` ranges instead of listed values.



## OpenAPI

````yaml GET /targeting/properties/{property_id}/values
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/{property_id}/values:
    get:
      tags:
        - Campaigns
      summary: List targeting property values
      description: >-
        Returns the allowed values for an `option` targeting property. Large
        catalogs (locations, schools) are paginated — use `search` to narrow.
        Returns 404 for `number` properties, which take `"min-max"` ranges
        instead of listed values.
      operationId: listTargetingPropertyValues
      parameters:
        - $ref: '#/components/parameters/PropertyId'
        - name: search
          in: query
          description: Filter values by name
          required: false
          schema:
            type: string
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/StartingAfter'
      responses:
        '200':
          description: A page of allowed values
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TargetingPropertyValueList'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    PropertyId:
      name: property_id
      in: path
      description: The targeting property ID
      required: true
      schema:
        type: string
    Limit:
      name: limit
      in: query
      description: Number of items to return per page
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 25
    StartingAfter:
      name: starting_after
      in: query
      description: Opaque pagination cursor from a previous response's `next_cursor`
      required: false
      schema:
        type: string
  schemas:
    TargetingPropertyValueList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TargetingPropertyValue'
        has_more:
          type: boolean
        next_cursor:
          type:
            - string
            - 'null'
    TargetingPropertyValue:
      type: object
      properties:
        value:
          type: string
          description: >-
            Opaque identifier for this value. Pass it back verbatim in a
            targeting condition's `values` array. Do not send the `label` and do
            not construct these yourself; the format (often a UUID) is not
            guaranteed.
          example: 9b1f8c72-3d4e-4a2b-8c1a-2f6e5d4c3b2a
        label:
          type: string
          description: >-
            Human-readable name for the value. For display only; never send this
            as a condition value.
          example: Fitness
    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'
    NotFound:
      description: >-
        The resource does not exist or is not visible to this API key
        (`not_found`)
      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

````