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
id
string

Unique identifier of the session

browser_id
string

ID of the associated browser

agent_id
string

ID of the associated agent

status
enum<string>

Current status of the session

Available options:
RUNNING,
SUCCESS,
FAILED
created_at
string

Timestamp when the session was created

max_retries
integer | null

Maximum number of retries to attempt

input
object

Input parameters for the automation

attempts
object[]

List of execution attempts