Skip to main content
GET
https://api.docksys.xyz
/
api
/
v1
/
verify
/
session
/
{sid}
Get verification session status
curl --request GET \
  --url https://api.docksys.xyz/api/v1/verify/session/{sid} \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "data": {
    "sid": "<string>",
    "pid": "<string>",
    "status": "pending",
    "result": null
  },
  "timestamp": "2023-11-07T05:31:56Z",
  "version": "<string>",
  "verifyRequestsRemaining": 123,
  "verifyIpRequestsRemaining": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.docksys.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

sid
string
required

Verification session identifier.

Query Parameters

wait
integer

Optional long-poll wait time in seconds.

Required range: 1 <= x <= 25

Response

Current verification session state.

status
enum<integer>
Available options:
200
data
object
timestamp
string<date-time>
version
string
verifyRequestsRemaining
integer | null
verifyIpRequestsRemaining
integer | null