Skip to main content
GET
/
v1
/
models
List API-generated models
curl --request GET \
  --url https://api.mint.gg/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "object": "<unknown>",
      "id": "<string>",
      "name": "<string>",
      "status": "<string>",
      "operation": {
        "workflowStage": "<string>",
        "lastError": "<string>"
      },
      "mintUrl": "<string>",
      "assets": {
        "glbUrl": "<string>",
        "optimizedGlbUrl": "<string>",
        "previewImageUrl": "<string>",
        "thumbnailUrl": "<string>"
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mint.gg/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Mint API key sent as a Bearer token.

Query Parameters

limit
integer
default:20

Maximum number of resources to return.

Required range: 1 <= x <= 100
cursor
string

Cursor returned from the previous page's pagination.nextCursor.

Response

Paginated 3D Models generated by the authenticated API project.

data
object[]
required
pagination
object
required