/keys require an API key in the Authorization header.
Get a Key
- Go to rwapulse.xyz/api-keys
- Enter a name, click Create
- Copy the key immediately (shown once)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
API key authentication
/keys require an API key in the Authorization header.
curl "https://rwapulse.xyz/api/v0/liquidity" \
-H "Authorization: Bearer rwa_your_key"
// JavaScript
const res = await fetch('https://rwapulse.xyz/api/v0/liquidity', {
headers: { 'Authorization': 'Bearer rwa_your_key' }
});
# Python
import requests
r = requests.get('https://rwapulse.xyz/api/v0/liquidity',
headers={'Authorization': 'Bearer rwa_your_key'})
| Code | Meaning | Fix |
|---|---|---|
| 401 | Missing/invalid key | Check Authorization: Bearer header |
| 429 | Rate limited | Wait 60s, retry |
| 500 | Server error | Retry with backoff |