GET
/
api
/
run
/
{id}
curl --request GET \
  --url https://api.avm.codes/api/run/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "apiKeyId": 123,
  "runId": "<string>",
  "status": "IN_PROGRESS",
  "creditsConsumed": 123,
  "errorMessage": "Error message",
  "createdAt": "2025-02-28T17:34:12.256Z",
  "modifiedAt": "2025-02-28T17:34:12.256Z",
  "input": "<string>",
  "output": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Example:

"1"

Response

200
application/json
A successful response containing user Run details.
id
number
required
apiKeyId
number
required
runId
string
required
status
enum<string>
required
Available options:
IN_PROGRESS,
COMPLETED,
TIMEOUT,
ERROR
Example:

"IN_PROGRESS"

creditsConsumed
number
required
errorMessage
string | null
required
Example:

"Error message"

createdAt
string
required
Example:

"2025-02-28T17:34:12.256Z"

modifiedAt
string
required
Example:

"2025-02-28T17:34:12.256Z"

input
string
required
output
string
required