GET
/
sessions
/
{session_id}
/
status
curl --request GET \
  --url https://api.flyingraccoon.tech/sessions/{session_id}/status \
  --header 'raccoon-secret-key: <api-key>'
{
  "session_id": "session_12345",
  "status": "terminated"
}

Authorizations

raccoon-secret-key
string
header
required

Path Parameters

session_id
string
required

Response

200
application/json
Successful Response
session_id
string
required

A unique identifier for the session.

Example:

"session_12345"

status
enum<string>
required

The current status of the session.

Available options:
starting,
running,
terminated,
completed,
unknown
Example:

"terminated"