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

# List API keys

> Returns all API keys for the authenticated user, including each key's scope and brand restrictions.



## OpenAPI

````yaml /api-reference/openapi.json get /keys
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /keys:
    get:
      tags:
        - API Keys
      summary: List API keys
      description: >-
        Returns all API keys for the authenticated user, including each key's
        scope and brand restrictions.
      responses:
        '200':
          description: List of API keys
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.KeysListResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.KeysListResponse:
      type: object
      properties:
        count:
          type: integer
        data:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.KeyListItem'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.KeyListItem:
      type: object
      properties:
        brand_ids:
          type: array
          items:
            type: string
        created_at:
          type: string
          example: '2026-02-28T12:00:00Z'
        id:
          type: string
        is_active:
          type: boolean
        last_used_at:
          type: string
          example: '2026-02-28T12:00:00Z'
        name:
          type: string
        preview:
          type: string
          example: sapi_key_a1b2c...
        scopes:
          type: array
          items:
            type: string
          example:
            - posts:write
            - inbox:read
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````