GET
/
session
/
{session_id}
curl --request GET \
  --url https://api.finic.ai/session/{session_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "browser_id": "<string>",
  "agent_id": "<string>",
  "status": "RUNNING",
  "created_at": "2023-11-07T05:31:56Z",
  "max_retries": 123,
  "input": {},
  "attempts": [
    {
      "status": "RUNNING",
      "logs": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

Authorization
string
required

Bearer token for authentication

Path Parameters

session_id
string
required

Unique identifier of the session

Response

200
application/json

Session details retrieved successfully

The response is of type object.