Model

Generated on 18 Mar 2026

Base URL https://api.paperspace.com/v1

GET List models

/models
Authorizations: BearerAuth
Http: Bearer

An API key or access token

List models

Query Parameters

after string optional

Fetch the next page of results after this cursor.

limit integer 1 – 120 optional

The number of items to fetch after this page.

orderBy string, one of: dtCreated optional

Order results by one of these fields.

Default: dtCreated
order string, one of: asc, desc optional

The order to sort the results by.

Default: desc
projectId string optional
curl -X GET \
  -H "Authorization: Bearer $API_TOKEN" \
  "https://api.paperspace.com/v1/models"

Responses

200

Successful response

hasMore boolean required

Whether there are more pages of results available.

items array of object required

The items on this page.

Show child properties
description string required Nullable

The description of the dataset

dtCreated string (date-time) required

The date the dataset was created

dtModified string (date-time) required

The date the dataset was last modified

id string required

The ID of the dataset

isPublic boolean required

Whether the dataset is public

name string required

The name of the dataset

projectId string required Nullable

The ID of the project

storageProviderId string required Nullable

The ID of the storage provider

teamId string required

The ID of the team that owns the dataset

nextPage string optional

The cursor required to fetch the next page of results. i.e. ?after=nextPage. This is null when there is no next page.

default

Error response

code string required
details object optional
message string required
{
  "hasMore": true,
  "items": [
    {
      "description": "string",
      "dtCreated": "2019-08-24T14:15:22Z",
      "dtModified": "2019-08-24T14:15:22Z",
      "id": "string",
      "isPublic": true,
      "name": "string",
      "projectId": "string",
      "storageProviderId": "string",
      "teamId": "string"
    }
  ],
  "nextPage": "string"
}
{
  "code": "string",
  "message": "string"
}

POST Create a model

/models
Authorizations: BearerAuth
Http: Bearer

An API key or access token

Create a model

Request Body: application/json

description string optional Nullable

The description of the model

isPublic boolean required

Whether the model is public

name string required

The name of the model

projectId string optional

The ID of the project

storageProviderId string optional

The ID of the storage provider

Content type application/json
{
  "isPublic": true,
  "name": "string",
  "projectId": "string",
  "storageProviderId": "string"
}
curl -X POST \
  -H "Authorization: Bearer $API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "isPublic": true,
  "name": "string",
  "projectId": "string",
  "storageProviderId": "string"
}' \
  "https://api.paperspace.com/v1/models"

Responses

200

Successful response

description string required Nullable

The description of the dataset

dtCreated string (date-time) required

The date the dataset was created

dtModified string (date-time) required

The date the dataset was last modified

id string required

The ID of the dataset

isPublic boolean required

Whether the dataset is public

name string required

The name of the dataset

projectId string required Nullable

The ID of the project

storageProviderId string required Nullable

The ID of the storage provider

teamId string required

The ID of the team that owns the dataset

default

Error response

code string required
details object optional
message string required
{
  "description": "string",
  "dtCreated": "2019-08-24T14:15:22Z",
  "dtModified": "2019-08-24T14:15:22Z",
  "id": "string",
  "isPublic": true,
  "name": "string",
  "projectId": "string",
  "storageProviderId": "string",
  "teamId": "string"
}
{
  "code": "string",
  "message": "string"
}

GET Get a model

/models/{id}
Authorizations: BearerAuth
Http: Bearer

An API key or access token

Get a model

Path Parameters

id string required

The ID of the model

curl -X GET \
  -H "Authorization: Bearer $API_TOKEN" \
  "https://api.paperspace.com/v1/models/{id}"

Responses

200

Successful response

description string required Nullable

The description of the dataset

dtCreated string (date-time) required

The date the dataset was created

dtModified string (date-time) required

The date the dataset was last modified

id string required

The ID of the dataset

isPublic boolean required

Whether the dataset is public

name string required

The name of the dataset

projectId string required Nullable

The ID of the project

storageProviderId string required Nullable

The ID of the storage provider

teamId string required

The ID of the team that owns the dataset

default

Error response

code string required
details object optional
message string required
{
  "description": "string",
  "dtCreated": "2019-08-24T14:15:22Z",
  "dtModified": "2019-08-24T14:15:22Z",
  "id": "string",
  "isPublic": true,
  "name": "string",
  "projectId": "string",
  "storageProviderId": "string",
  "teamId": "string"
}
{
  "code": "string",
  "message": "string"
}

DELETE Delete a model

/models/{id}
Authorizations: BearerAuth
Http: Bearer

An API key or access token

Delete a model

Path Parameters

id string required

The ID of the model

curl -X DELETE \
  -H "Authorization: Bearer $API_TOKEN" \
  "https://api.paperspace.com/v1/models/{id}"

Responses

200

Successful response

id string required

The ID of the model

default

Error response

code string required
details object optional
message string required
{
  "id": "string"
}
{
  "code": "string",
  "message": "string"
}

We can't find any results for your search.

Try using different keywords or simplifying your search terms.