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

# Get Column Values

> Distinct values for one column, if that column is enumerable.

Omitting `limit` serves the column's own cap (`valueLimit` in `/v1/columns`),
sized from its measured vocabulary plus a 100% growth buffer — so a
multiselect column comes back complete instead of clipped at a flat 1000.



## OpenAPI

````yaml /api-reference/v2/contact-openapi.json get /columns/{column}/values
openapi: 3.1.0
info:
  title: RevenueBase Velocity API
  version: 0.1.0
servers:
  - url: https://api.revenuebase.ai/v2/contact
    description: Production
security: []
paths:
  /columns/{column}/values:
    get:
      summary: Get Column Values
      description: >-
        Distinct values for one column, if that column is enumerable.


        Omitting `limit` serves the column's own cap (`valueLimit` in
        `/v1/columns`),

        sized from its measured vocabulary plus a 100% growth buffer — so a

        multiselect column comes back complete instead of clipped at a flat
        1000.
      operationId: get_column_values_v1_columns__column__values_get
      parameters:
        - name: column
          in: path
          required: true
          schema:
            type: string
            title: Column
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
        - name: limit
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Get Column Values V1 Columns  Column  Values Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Key

````