> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wadial.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get token

> Inspect one token's pairing and runtime state.

Returns stored token metadata plus live runtime state.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.wadial.com/api/v1/sessions/{sessionId}" \
    -H "Authorization: Bearer $WADIAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "sessionId": "019eff5e-e24e-74ce-a9bb-ccd97e6946b6",
      "status": "connected",
      "paired": true,
      "active": true,
      "connected": true,
      "connectionState": "connected",
      "meJid": "15551234567@s.whatsapp.net"
    }
  }
  ```
</ResponseExample>
