Yapper Developers
Api reference
GET
/processes

Lists team processes visible to the API key. Unsupported filter combinations return unsupported_filter_combination instead of silently adding new index requirements.

Authorization

bearerAuth processes:read
AuthorizationBearer <token>

In: header

Scope: processes:read

Query Parameters

status?string

Value in

  • "queued"
  • "processing"
  • "completed"
  • "failed"
type?string
model?string
createdAfter?string
Formatdate-time
createdBefore?string
Formatdate-time
limit?integer
Range1 <= value <= 100
Default20
cursor?string

Opaque pagination cursor — pass the nextCursor from the previous page verbatim. nextCursor is null on the last page.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/processes"
{  "data": [    {      "id": "string",      "type": "string",      "status": "queued",      "model": "string",      "createdAt": "2019-08-24T14:15:22Z",      "updatedAt": "2019-08-24T14:15:22Z",      "completedAt": "2019-08-24T14:15:22Z",      "estimatedCompletionSeconds": 0,      "creditsEstimated": 0,      "creditsUsed": 0,      "error": {        "code": "string",        "message": "string"      },      "input": {},      "outputs": [        {          "type": "image",          "assetId": "string",          "url": "http://example.com",          "width": 0,          "height": 0,          "duration": 0,          "mimeType": "string"        }      ],      "metadata": {        "property1": "string",        "property2": "string"      },      "links": {        "self": "string"      }    }  ],  "nextCursor": "string"}
{  "error": {    "code": "string",    "message": "string",    "requestId": "string"  }}
{  "error": {    "code": "string",    "message": "string",    "requestId": "string"  }}
{  "error": {    "code": "string",    "message": "string",    "requestId": "string"  }}
{  "error": {    "code": "string",    "message": "string",    "requestId": "string"  }}