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

# List current business API keys.

> Retrieves a paged list of API keys owned by the caller's current Leadping business, with support for filtering, sorting, and pagination.



## OpenAPI

````yaml /openapi.json post /businesses/api-keys/my
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /businesses/api-keys/my:
    post:
      tags:
        - Businesses
      summary: List current business API keys.
      description: >-
        Retrieves a paged list of API keys owned by the caller's current
        Leadping business, with support for filtering, sorting, and pagination.
      operationId: Businesses_GetAllApiKeysForCurrentUser
      requestBody:
        description: Pagination, filtering, and sorting options.
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/RequestDataOptions'
              description: >-
                Options for flexible, efficient, and explicit querying in Cosmos
                DB or similar repositories.
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/RequestDataOptions'
              description: >-
                Options for flexible, efficient, and explicit querying in Cosmos
                DB or similar repositories.
        required: true
      responses:
        '200':
          description: Current-business API keys were successfully retrieved.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PagedResultOfBusinessTableRow'
                description: >-
                  A generic container for paginated results returned to the
                  client.
        '400':
          description: The request was invalid or malformed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    RequestDataOptions:
      type: object
      properties:
        pageSize:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: Maximum items to return in one page
          format: int32
        continuationToken:
          type: string
          description: >-
            Opaque Cosmos DB continuation token. ‑ on the **first** request. ‑
            Client must echo back the NextToken it received from the previous
            page.
          nullable: true
        orderBy:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/OrderByOption'
            description: An object for ordering during querying
          description: List of sort instructions, in priority order.
          nullable: true
        includeCount:
          type: boolean
          description: Whether to include the total count in the response (for pagination).
          nullable: true
        search:
          type: string
          description: The search term to filter results (applied to ).
          nullable: true
        searchFields:
          type: array
          items:
            type: string
          description: >-
            The list of fields to apply the Search term to (must be string
            properties).
          nullable: true
        filters:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/ExactMatchFilter'
            description: >-
              A generic object for handling exact match filtering during
              querying
          description: Key-value exact match filters (e.g., Status = Active).
          nullable: true
        rangeFilters:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/RangeFilter'
            description: A generic object for handling range filtering during querying
          description: Advanced range-based filters (e.g., Price > 50 and Price <= 200).
          nullable: true
      description: >-
        Options for flexible, efficient, and explicit querying in Cosmos DB or
        similar repositories.
    PagedResultOfBusinessTableRow:
      type: object
      properties:
        items:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/BusinessTableRow'
            description: API DTO containing business data used by Leadping API contracts.
          description: The subset of items returned for the current page.
        pageSize:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: >-
            The number of items returned per page in the response. This may
            reflect the client's requested page size, or a server-defined
            default or limit.
          format: int32
        totalCount:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: >-
            The total number of items that match the query across all pages. May
            be null if the count is not computed or not applicable (e.g., in
            continuation-based pagination).
          format: int32
          nullable: true
        continuationToken:
          type: string
          description: >-
            Opaque storage continuation token. ‑ `null` → the current page was
            the last page.
          nullable: true
      description: A generic container for paginated results returned to the client.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type.
          nullable: true
        title:
          type: string
          description: Short, human-readable summary of the problem.
          nullable: true
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: HTTP status code returned for the problem.
          format: int32
          nullable: true
        detail:
          type: string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
          nullable: true
    OrderByOption:
      type: object
      properties:
        field:
          type: string
          description: The field to sort by.
        direction:
          enum:
            - asc
            - desc
          type: string
          description: An enumerator for sort direction during querying
          nullable: true
      description: An object for ordering during querying
    ExactMatchFilter:
      type: object
      properties:
        value:
          description: The value that the field must match.
        field:
          type: string
          description: The field to filter by.
      description: A generic object for handling exact match filtering during querying
    RangeFilter:
      type: object
      properties:
        greaterThan:
          description: The exclusive lower bound for the field value.
        greaterThanOrEqual:
          description: The inclusive lower bound for the field value.
        lessThan:
          description: The exclusive upper bound for the field value.
        lessThanOrEqual:
          description: The inclusive upper bound for the field value.
        field:
          type: string
          description: The field to filter by.
      description: A generic object for handling range filtering during querying
    BusinessTableRow:
      type: object
      properties:
        id:
          type: string
          description: The unique ID for this business.
        name:
          type: string
          description: The human-readable name shown for this business.
        business:
          type: object
          allOf:
            - $ref: '#/components/schemas/IdNamePair'
          description: The ID and name for this business.
          nullable: true
        industry:
          type: string
          description: The industry value for this business.
          nullable: true
        userCount:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: The user count for this business.
          format: int32
        accountBalance:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$
          description: The account balance value for this business.
          format: double
          nullable: true
        billingPlan:
          enum:
            - Annual
            - Monthly
          type: string
          description: Defines the supported Billing Plan values.
          nullable: true
        subscriptionStatus:
          enum:
            - Pending
            - Active
            - Overdue
            - Canceled
          type: string
          description: Defines the supported Subscription Status values.
          nullable: true
        lastSubscriptionEventAt:
          type: string
          description: >-
            Date and time when this Leadping business table row was last
            subscription event.
          format: date-time
          nullable: true
        subscriptionCancelAt:
          type: string
          description: >-
            Date and time when this Leadping business table row was subscription
            cancel.
          format: date-time
          nullable: true
        paymentFailedAt:
          type: string
          description: >-
            Date and time when this Leadping business table row was payment
            failed.
          format: date-time
          nullable: true
        phone:
          type: string
          description: The phone number associated with this business.
        website:
          type: string
          description: The website URL associated with this business.
        status:
          enum:
            - SettingUp
            - SetupCompleted
            - Active
          type: string
          description: Defines the supported Business Status values.
          nullable: true
        enabled:
          type: boolean
          description: Whether this business is enabled.
        apiKeyPreview:
          type: string
          description: The masked API key preview owned by this business.
          nullable: true
        apiKeyIssuedAt:
          type: string
          description: The date and time this business API key was issued.
          format: date-time
          nullable: true
        apiKeyFirstUsedAt:
          type: string
          description: The date and time this business API key was first used.
          format: date-time
          nullable: true
        apiKeyLastUsedAt:
          type: string
          description: The date and time this business API key was last used.
          format: date-time
          nullable: true
        apiKeyExpiresAt:
          type: string
          description: >-
            The date and time this business API key expires, or null when it has
            no expiration.
          format: date-time
          nullable: true
        apiKeyTotalUses:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: The total number of tracked uses for this business API key.
          format: int64
        setupStep:
          enum:
            - DomainFinding
            - DomainOptionsFound
            - SiteGenerating
            - SiteGenerated
            - BrandSubmitted
            - BrandApproved
            - CampaignSubmitted
            - CampaignApproved
            - CarrierReviewing
            - TenDlcComplete
            - Complete
          type: string
          description: Defines the supported Business Setup Step values.
          nullable: true
        activationStatus:
          enum:
            - DraftOnboarding
            - PaymentMethodPending
            - PaymentMethodConfirmed
            - SubscriptionPending
            - SubscriptionReceived
            - SubscriptionActive
            - LaunchReviewPending
            - TelephonyProvisioningPending
            - TelephonyPartiallyProvisioned
            - TelephonyReady
            - AwaitingReview
            - DomainSelection
            - WebsiteSetup
            - ComplianceRegistration
            - ReadyForApproval
            - Active
            - Failed
            - Blocked
            - BlockedRequiresOperatorAction
            - ManuallyBypassed
          type: string
          description: Defines the supported Customer Activation Status values.
          nullable: true
        websiteStatus:
          enum:
            - NotStarted
            - DomainSuggestionsPending
            - DomainSelectionPending
            - DomainPurchasePending
            - DomainPurchased
            - WebsiteGenerationQueued
            - WebsiteGenerating
            - WebsiteDeploymentQueued
            - WebsiteDeploying
            - WebsiteLive
            - WebsiteFailed
            - ManuallyBypassed
          type: string
          description: Defines the supported Website Lifecycle Status values.
          nullable: true
        tenDlcStatus:
          enum:
            - NotStarted
            - DraftGenerated
            - DraftNeedsAdminReview
            - ReadyToSubmit
            - Submitted
            - PendingTelnyxReview
            - Approved
            - Rejected
            - NeedsChanges
            - ResubmissionReady
            - Failed
          type: string
          description: Defines the supported 10DLC Application Status values.
          nullable: true
        needsAdminReview:
          type: boolean
          description: Whether needs admin review applies to this business.
        modifiedAt:
          type: string
          description: The date and time for the modified at value on this business.
          format: date-time
      description: API DTO containing business data used by Leadping API contracts.
    IdNamePair:
      required:
        - id
        - name
      type: object
      properties:
        id:
          type: string
          description: The unique identifier.
        name:
          type: string
          description: The display name.
      description: >-
        A minimal Record type with an (string), (string), and maximum JSON
        compatibility. The reason for this type (over something like
        KeyValuePair, dictionary) is because of JSON serialization support.

````