Skip to main content
GET
/
v1
/
runs
List runs
curl --request GET \
  --url https://mino.ai/v1/runs \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "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"
      }
    }
  ],
  "pagination": {
    "next_cursor": "eyJpZCI6ImFiYyIsImNyZWF0ZWRBdCI6IjIwMjYtMDEtMDFUMTI6MDA6MDBaIn0=",
    "has_more": true
  }
}

Authorizations

X-API-Key
string
header
required

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

Query Parameters

status
enum<string>

Filter by run status

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

"COMPLETED"

cursor
string

Cursor for pagination (from previous response)

Example:

"eyJpZCI6ImFiYyIsImNyZWF0ZWRBdCI6IjIwMjYtMDEtMDFUMTI6MDA6MDBaIn0="

limit
integer
default:20

Maximum number of results to return (1-100)

Required range: 1 <= x <= 100
Example:

20

Response

Paginated list of runs

Paginated list of runs

data
object[]
required

Array of runs

pagination
object
required

Pagination information