API Reference
Core Integration Guide
Use our modern HTTP endpoints to submit payloads securely. All communication requires a valid bearer token generated inside your secure hardware enclaves.
POST/v1/auth/session
Initializes an isolated routing sequence channel between local device keys and regional carrier matrices.
Request Parameters
| Field | Type | Description |
|---|---|---|
| client_token | string | Your unique active sandbox key. |
| node_target | string | Target fallback region cluster. |
Request ExamplecURL
curl -X POST https://api.oasisprime.xyz/v1/auth/session \
-H "Authorization: Bearer opx_live_77x" \
-H "Content-Type: application/json" \
-d '{
"node_target": "NODE-PRIMARY-ZULU"
}'Response Schema201 Created
{
"status": "SEALED",
"channel_id": "ch_9921_x8",
"latency_overhead": "12ms",
"integrity_checked": true
}