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

# List Access Lists

> Retrieve all access lists in the organization. Requires an API key with read manage permissions.

Retrieve all access lists in the organization.


## OpenAPI

````yaml GET /v1/manage/access-list
openapi: 3.0.3
info:
  title: Requesty Management API
  description: >-
    Requesty Management API for API key management, groups, members, and
    organization settings.
  version: 1.0.0
servers:
  - url: https://api-v2.requesty.ai
    description: Management API endpoint
security:
  - BearerAuth: []
paths:
  /v1/manage/access-list:
    servers:
      - url: https://api-v2.requesty.ai
        description: Management API endpoint
    get:
      summary: List access lists
      description: >-
        Retrieve all access lists in the organization. Requires an API key with
        read manage permissions.
      operationId: listAccessLists
      responses:
        '200':
          description: Successfully retrieved access lists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAccessListsResponse'
        '401':
          description: Unauthorized - missing or invalid Authorization header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden - API key does not have read manage permissions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ListAccessListsResponse:
      type: object
      required:
        - access_lists
      properties:
        access_lists:
          type: array
          items:
            $ref: '#/components/schemas/AccessListObject'
          description: List of access lists in the organization
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - origin
            - message
          properties:
            origin:
              type: string
              enum:
                - router
                - provider
              description: >-
                Whether the error originated from Requesty's router or an
                upstream provider.
            message:
              type: string
              description: Human-readable error description.
    AccessListObject:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The access list ID
        name:
          type: string
          description: The access list name
        organization_id:
          type: string
          description: The organization ID that owns this access list
        auto_approve:
          type: boolean
          description: >-
            Whether new models matching the list patterns are automatically
            approved
        chat:
          type: array
          items:
            type: string
          description: Allowed chat/completion model identifiers
        embedding:
          type: array
          items:
            type: string
          description: Allowed embedding model identifiers
        image:
          type: array
          items:
            type: string
          description: Allowed image generation model identifiers
        transcription:
          type: array
          items:
            type: string
          description: Allowed transcription model identifiers
        speech:
          type: array
          items:
            type: string
          description: Allowed speech model identifiers
      required:
        - id
        - name
        - organization_id
        - auto_approve
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key for authentication

````