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

# Check project setup availability

> Checks whether the proxy model name and W&B project can be connected using the selected create or import mode.



## OpenAPI

````yaml /openapi/model-distillation/management.openapi.yaml get /tasks/availability
openapi: 3.1.0
info:
  title: CoreWeave Model Distillation Management API
  version: 1.0.0
  description: |
    Manage providers, projects (called tasks in API paths), routing versions,
    datasets, relabeling, fine-tunes, evaluations, and analytics. This is the
    same API used by Model Distillation.
servers:
  - url: https://distillation.training.wandb.ai/v1
    description: Production
security:
  - WandbCredential: []
tags:
  - name: Providers
    description: OpenAI-compatible endpoints, credentials, model catalogs, and pricing.
  - name: Tasks
    description: Stable task identity and task-level information.
  - name: Routing
    description: Versioned model targets, weights, and request parameters.
  - name: Datasets
    description: >-
      Reproducible data snapshots, entries, relabeling, and reusable model
      outputs.
  - name: Fine-tunes
    description: Supervised fine-tuning jobs and hosted model artifacts.
  - name: Evaluations
    description: Head-to-head, exact-match, and categorization evaluations.
  - name: Analytics
    description: Task traffic, token, error, and estimated-cost read models.
  - name: UI preferences
    description: Per-task display preferences used by the UI.
paths:
  /tasks/availability:
    parameters:
      - $ref: '#/components/parameters/WandbEntity'
    get:
      tags:
        - Tasks
      summary: Check project setup availability
      description: >-
        Checks whether the proxy model name and W&B project can be connected
        using the selected create or import mode.
      operationId: getProjectSetupAvailability
      parameters:
        - name: alias
          in: query
          description: Proxy model alias to check.
          required: true
          schema:
            type: string
            pattern: ^[a-z0-9-]{1,64}$
        - name: project
          in: query
          description: W&B project to check.
          required: true
          schema:
            type: string
            minLength: 1
        - name: mode
          in: query
          description: Whether to create or import the W&B project.
          required: true
          schema:
            type: string
            enum:
              - create
              - import
      responses:
        '200':
          description: Whether the requested project setup is available.
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    required:
                      - available
                    properties:
                      available:
                        const: true
                  - type: object
                    required:
                      - available
                      - reason
                      - message
                    properties:
                      available:
                        const: false
                      reason:
                        type: string
                        enum:
                          - proxy_model_exists
                          - project_claimed
                          - wandb_project_exists
                          - wandb_project_not_found
                      message:
                        type: string
        default:
          $ref: '#/components/responses/Error'
components:
  parameters:
    WandbEntity:
      name: Wandb-Entity
      in: header
      required: false
      description: >-
        Accessible personal or team entity. Omit to use the authenticated user's
        default entity.
      schema:
        type: string
  responses:
    Error:
      description: Request failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
          properties:
            message:
              type: string
            type:
              type: string
      example:
        error:
          message: Task 'missing' not found in entity 'your-team'
          type: not_found
  securitySchemes:
    WandbCredential:
      type: http
      scheme: bearer
      bearerFormat: W&B API key
      description: A W&B API key.

````

## Related topics

- [About Regions and Availability Zones (AZs)](/platform/regions/about-regions-and-azs.md)
