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

# List active contacts



## OpenAPI

````yaml /openapi/v1.openapi.json get /v1/contacts
openapi: 3.0.0
info:
  title: Bukki Public API
  description: Workspace-scoped API for approved Bukki integrations.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.getbukki.com
    description: Production
  - url: https://api-staging.getbukki.com
    description: Staging
security: []
tags: []
paths:
  /v1/contacts:
    get:
      tags:
        - contacts
      summary: List active contacts
      operationId: listContacts
      parameters:
        - name: search
          required: false
          in: query
          schema:
            maxLength: 120
            type: string
        - name: cursor
          required: false
          in: query
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            type: number
        - name: type
          required: false
          in: query
          schema:
            enum:
              - all
              - customer
              - supplier
            type: string
        - name: sort
          required: false
          in: query
          schema:
            enum:
              - createdAt
              - name
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                additionalProperties: false
                properties:
                  data:
                    items:
                      additionalProperties: false
                      properties:
                        address:
                          nullable: true
                          type: string
                        createdAt:
                          $ref: '#/components/schemas/Instant'
                        email:
                          format: email
                          nullable: true
                          type: string
                        id:
                          $ref: '#/components/schemas/ResourceId'
                        isCustomer:
                          type: boolean
                        isSupplier:
                          type: boolean
                        name:
                          minLength: 1
                          type: string
                        phone:
                          nullable: true
                          type: string
                        tin:
                          nullable: true
                          type: string
                      required:
                        - address
                        - createdAt
                        - email
                        - id
                        - isCustomer
                        - isSupplier
                        - name
                        - phone
                        - tin
                      type: object
                    type: array
                  page:
                    $ref: '#/components/schemas/Page'
                  requestId:
                    $ref: '#/components/schemas/RequestId'
                required:
                  - data
                  - page
                  - requestId
                type: object
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '403':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '429':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '500':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '503':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
      security:
        - WorkspaceApiKey: []
components:
  schemas:
    Instant:
      example: '2026-09-07T12:00:00.000Z'
      format: date-time
      type: string
    ResourceId:
      format: uuid
      type: string
    Page:
      additionalProperties: false
      properties:
        hasMore:
          type: boolean
        nextCursor:
          minLength: 1
          nullable: true
          type: string
      required:
        - hasMore
        - nextCursor
      type: object
    RequestId:
      maxLength: 128
      minLength: 1
      pattern: ^[A-Za-z0-9][A-Za-z0-9._:-]{0,127}$
      type: string
    ApiErrorResponse:
      additionalProperties: false
      properties:
        error:
          additionalProperties: false
          properties:
            code:
              $ref: '#/components/schemas/ApiErrorCode'
            details:
              oneOf:
                - items:
                    type: string
                  type: array
                - additionalProperties: true
                  type: object
            message:
              minLength: 1
              type: string
          required:
            - code
            - message
          type: object
        requestId:
          $ref: '#/components/schemas/RequestId'
      required:
        - error
        - requestId
      type: object
    ApiErrorCode:
      enum:
        - VALIDATION_ERROR
        - UNAUTHORIZED
        - FORBIDDEN
        - NOT_FOUND
        - CONFLICT
        - UNPROCESSABLE_ENTITY
        - PLAN_LIMIT_REACHED
        - BOOKS_LOCKED
        - IDEMPOTENCY_CONFLICT
        - RATE_LIMITED
        - SERVICE_UNAVAILABLE
        - REQUEST_FAILED
        - INTERNAL_ERROR
      type: string
  securitySchemes:
    WorkspaceApiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: Workspace-scoped integration key.

````