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

# List compute profiles

> List the organization's Explorer compute profiles and how contended each one's query queue is. Pass a profile's `identifier` as `compute_profile` when running a query to route it to that profile; prefer one with a low `queued` count to start sooner.

List your organization's [compute profiles](/app/query-management/compute-profiles) and the current depth of each profile's query queue.

Pass a profile's `identifier` as the `compute_profile` when [running a query](/api/explorer/run-query) to route it to that profile. When you have a choice, prefer a profile with a lower `queued` count so your query starts sooner.


## OpenAPI

````yaml get /api/v1/explorer/compute-profiles
openapi: 3.0.2
info:
  title: Allium API
  version: 0.1.0
servers:
  - url: https://api.allium.so
security: []
paths:
  /api/v1/explorer/compute-profiles:
    get:
      summary: List Compute Profiles
      description: >-
        List the organization's Explorer compute profiles and how contended each
        one's query queue is. Pass a profile's `identifier` as `compute_profile`
        when running a query to route it to that profile; prefer one with a low
        `queued` count to start sooner.
      operationId: list_compute_profiles_api_v1_explorer_compute_profiles_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ComputeProfileInfo'
                type: array
                title: >-
                  Response List Compute Profiles Api V1 Explorer Compute
                  Profiles Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyBearer: []
components:
  schemas:
    ComputeProfileInfo:
      properties:
        identifier:
          type: string
          title: Identifier
        name:
          type: string
          title: Name
        size:
          $ref: '#/components/schemas/ComputeSizeMultiplier'
        is_default:
          type: boolean
          title: Is Default
        queued:
          type: integer
          title: Queued
        running:
          type: integer
          title: Running
      type: object
      required:
        - identifier
        - name
        - size
        - is_default
        - queued
        - running
      title: ComputeProfileInfo
      description: An Explorer compute profile and the current depth of its query queue.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ComputeSizeMultiplier:
      type: string
      enum:
        - 1x
        - 2x
        - 4x
        - 8x
        - 16x
      title: ComputeSizeMultiplier
      description: >-
        Compute size as a speed multiplier over your organization's base
        warehouse.
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
  securitySchemes:
    APIKeyBearer:
      type: apiKey
      in: header
      name: X-API-KEY

````