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

# Availability

> Read provider-neutral scheduling readiness, accepted regions, architectures, and resource limits.



## OpenAPI

````yaml /openapi.json get /v1/orgs/{orgId}/projects/{projectId}/executions/availability
openapi: 3.1.0
info:
  title: Korve API
  version: 0.1.0
  description: >-
    Typed control plane for deploying applications and explicitly provisioning
    their managed infrastructure.
servers:
  - url: https://api.korve.dev
security: []
paths:
  /v1/orgs/{orgId}/projects/{projectId}/executions/availability:
    get:
      tags:
        - executions
      summary: Availability
      description: >-
        Read provider-neutral scheduling readiness, accepted regions,
        architectures, and resource limits.
      operationId: executions.availability
      parameters:
        - name: orgId
          in: path
          required: true
          schema:
            type: string
          description: The organization's id (UUID) or slug — either form is accepted.
        - name: projectId
          in: path
          required: true
          schema:
            type: string
          description: The project's id (UUID) or slug — either form is accepted.
      responses:
        '200':
          description: Current execution scheduling envelope.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ready:
                    type: boolean
                  regions:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        city:
                          type: string
                        country:
                          type: string
                        continent:
                          type: string
                      required:
                        - id
                        - name
                        - city
                        - country
                        - continent
                      additionalProperties: false
                  architectures:
                    type: array
                    items:
                      type: string
                      enum:
                        - x86_64
                  cpuKinds:
                    type: array
                    items:
                      type: string
                      enum:
                        - shared
                        - performance
                  privateImageRegistries:
                    type: array
                    description: >-
                      Registry hosts accepted for write-only private-image
                      credentials. Wildcards describe supported customer-owned
                      registry hostnames.
                    items:
                      type: string
                  limits:
                    type: object
                    properties:
                      cpus:
                        type: object
                        properties:
                          min:
                            type: integer
                          max:
                            type: integer
                        required:
                          - min
                          - max
                        additionalProperties: false
                      memoryMb:
                        type: object
                        properties:
                          min:
                            type: integer
                          max:
                            type: integer
                        required:
                          - min
                          - max
                        additionalProperties: false
                      timeoutSeconds:
                        type: object
                        properties:
                          min:
                            type: integer
                          max:
                            type: integer
                        required:
                          - min
                          - max
                        additionalProperties: false
                      maxActiveExecutionsPerProject:
                        type:
                          - integer
                          - 'null'
                      maxEnvVariables:
                        type: integer
                    required:
                      - cpus
                      - memoryMb
                      - timeoutSeconds
                      - maxActiveExecutionsPerProject
                      - maxEnvVariables
                    additionalProperties: false
                  runtime:
                    type: object
                    properties:
                      nestedContainers:
                        type: boolean
                    required:
                      - nestedContainers
                    additionalProperties: false
                required:
                  - ready
                  - regions
                  - architectures
                  - cpuKinds
                  - privateImageRegistries
                  - limits
                  - runtime
                additionalProperties: false
        '404':
          description: No such project.
      security:
        - apiKey: []
        - session: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: korve_api_key
    session:
      type: apiKey
      in: cookie
      name: korve.session_token

````