Skip to main content
GET
/
api
/
v1
/
images
List User Images
curl --request GET \
  --url https://api.primeintellect.ai/api/v1/images \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "imageName": "<string>",
      "imageTag": "<string>",
      "status": "PENDING",
      "createdAt": "2023-11-07T05:31:56Z",
      "artifactType": "CONTAINER_IMAGE",
      "fullImagePath": "<string>",
      "errorMessage": "<string>",
      "sizeBytes": 123,
      "startedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "pushedAt": "2023-11-07T05:31:56Z",
      "teamId": "<string>",
      "ownerType": "personal",
      "displayRef": "<string>"
    }
  ],
  "total_count": 0,
  "offset": 0,
  "limit": 100,
  "status": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.primeintellect.ai/llms.txt

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

Rate Limit

300 requests per 60 seconds per IP and token.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

teamId
string | null

Filter by team ID. If provided, returns only that team's images. If not provided, returns only personal images.

offset
integer
default:0
limit
integer
default:100

Response

Successful Response

data
ImageResponse · object[]
required
total_count
integer
default:0

Total number of items available in the dataset

offset
integer
default:0

Number of items to skip before starting to collect the result set

Required range: x >= 0
limit
integer
default:100

Maximum number of items to return

Required range: x >= 0
status
string | null

Response status