Skip to main content
GET
/
v1
/
runs
/
{id}
Get run by ID
curl --request GET \
  --url https://mino.ai/v1/runs/{id} \
  --header 'X-API-Key: <api-key>'
{
  "run_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "COMPLETED",
  "goal": "Find all pricing information",
  "created_at": "2026-01-14T10:30:00Z",
  "started_at": "2026-01-14T10:30:05Z",
  "finished_at": "2026-01-14T10:31:30Z",
  "result": {},
  "error": {
    "message": "Browser crashed during execution"
  },
  "streaming_url": "https://stream.mino.ai/session/xyz",
  "browser_config": {
    "browser_type": "tetra-anchor",
    "proxy_enabled": false,
    "proxy_country_code": "US"
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get your key from the API Keys page.

Path Parameters

id
string
required

Run ID

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Response

Run details

A single automation run

run_id
string
required

Unique identifier for the run

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

status
enum<string>
required

Current status of the run

Available options:
PENDING,
RUNNING,
COMPLETED,
FAILED,
CANCELLED
Example:

"COMPLETED"

goal
string
required

Natural language goal for this automation run

Example:

"Find all pricing information"

created_at
string
required

ISO 8601 timestamp when run was created

Example:

"2026-01-14T10:30:00Z"

started_at
string | null
required

ISO 8601 timestamp when run started executing

Example:

"2026-01-14T10:30:05Z"

finished_at
string | null
required

ISO 8601 timestamp when run finished

Example:

"2026-01-14T10:31:30Z"

result
object
required

Extracted data from the automation run

error
object
required

Error details. Null if the run succeeded or is still running.

streaming_url
string | null
required

URL to watch live browser session (available while running)

Example:

"https://stream.mino.ai/session/xyz"

browser_config
object
required

Browser configuration used for the run