Skip to main content
GET
/
api
/
v1
/
ingest
/
batches
/ingest/batches
curl --request GET \
  --url https://api.evermuse.com/api/v1/ingest/batches \
  --header 'x-api-key: <api-key>'
{
  "batches": [
    {
      "batchId": "<string>",
      "status": "LANDING",
      "createdAt": 1709282096000,
      "acceptedCount": 1,
      "rejectedCount": 1,
      "totalErrorCount": 1,
      "errors": [
        {
          "index": 1,
          "code": "<string>",
          "message": "<string>"
        }
      ],
      "source": "<string>",
      "type": "<string>",
      "attachmentDownloadTotal": 1,
      "attachmentDownloadComplete": 1,
      "attachmentDownloadFailed": 1,
      "attachmentDownloadStatus": "PENDING"
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.evermuse.com/llms.txt

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

Authorizations

x-api-key
string
header
required

Your API key, sent as the x-api-key header. Create one in Settings > API Keys with api:write permission. Format: em_sk_...

Query Parameters

limit
integer
default:20

Number of batches to return per page. Defaults to 20, maximum 100.

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

Pagination cursor from a previous response's nextCursor field. Omit to start from the most recent batch.

Maximum string length: 256

Response

A page of batches.

batches
object[]
required

List of batches, ordered by creation time (newest first).

nextCursor
string | null
required

Pass this value as the cursor query parameter to fetch the next page. null when there are no more results.

Maximum string length: 256