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

# List remote model uploads

> Lists asynchronous jobs that import model files from Hugging Face or a presigned remote URL.



## OpenAPI

````yaml GET /projects/{projectId}/models/uploads
openapi: 3.1.0
info:
  title: Together APIs
  description: The Together REST API. See https://docs.together.ai for more details.
  version: 2.0.0
  termsOfService: https://www.together.ai/terms-of-service
  contact:
    name: Together Support
    url: https://www.together.ai/contact
  license:
    name: MIT
    url: https://github.com/togethercomputer/openapi/blob/main/LICENSE
servers:
  - url: https://api.together.ai/v1
    description: Default environment for APIs
  - url: https://api-inference.together.ai/v2
    description: Optimized environment for inference
security:
  - bearerAuth: []
paths:
  /projects/{projectId}/models/uploads:
    get:
      tags:
        - VolumeService
      summary: List remote model uploads
      description: >-
        Lists asynchronous jobs that import model files from Hugging Face or a
        presigned remote URL.
      operationId: VolumeService_ListRemoteModelUploads
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            description: Project identifier.
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            description: Maximum number of uploads to return.
        - name: after
          in: query
          schema:
            type: string
            description: Cursor from a previous remote upload list response.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DE.ListRemoteUploadsResponse'
        default:
          description: Default error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorData'
      servers:
        - url: https://api.together.ai/v2
components:
  schemas:
    DE.ListRemoteUploadsResponse:
      type: object
      description: Remote model import jobs and pagination metadata.
      required:
        - data
        - object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/DE.RemoteUpload'
          description: Remote upload jobs.
        next_cursor:
          type: string
          description: Cursor for the next page. Null if there are no more results.
        object:
          const: list
          description: Object type. Always `list`.
    ErrorData:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              nullable: false
            type:
              type: string
              nullable: false
            param:
              type: string
              nullable: true
              default: null
            code:
              type: string
              nullable: true
              default: null
          required:
            - type
            - message
    DE.RemoteUpload:
      type: object
      required:
        - id
        - projectId
        - modelId
        - remoteUrl
        - status
        - createdAt
      properties:
        id:
          type: string
          description: Unique ID of the remote model import job.
        projectId:
          type: string
          description: ID of the project that owns the import job.
        modelId:
          type: string
          description: ID of the registered model receiving the imported files.
        remoteUrl:
          type: string
          description: Hugging Face repository or presigned URL being imported.
        status:
          enum:
            - REMOTE_UPLOAD_STATUS_PENDING
            - REMOTE_UPLOAD_STATUS_RUNNING
            - REMOTE_UPLOAD_STATUS_ERROR
            - REMOTE_UPLOAD_STATUS_SUCCEEDED
            - REMOTE_UPLOAD_STATUS_FAILED
          type: string
          description: Current lifecycle state of the asynchronous import job.
        statusMessage:
          type: string
          description: Human-readable progress or failure detail for the current status.
        restartCount:
          type: integer
          description: Number of times the import worker has restarted this job.
        maxRestarts:
          type: integer
          description: Maximum worker restarts allowed before the job fails permanently.
        createdAt:
          type: string
          format: date-time
          description: Time when the import job was created.
        updatedAt:
          type: string
          format: date-time
          description: Time when the import job was last updated.
      description: >-
        Asynchronous job that imports remote files into a registered model and
        creates a model revision.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-bearer-format: bearer
      x-default: default

````