1️⃣ Get your API key
- Open api.sorsa.io/overview
- Click Sign in / Log in. Register using any option you prefer (we do not ask for extra personal information).
- Choose a Plan (10k, 100k, or 500k requests) and Billing (monthly or yearly).
- Select a payment method (Crypto or Card) and complete the payment.
- After confirmation, your dashboard will display:
- Your API Key 🔑
- Your Remaining Requests 📊
⚠️ Security Note: Keep your API key private. Never expose it in frontend code or public repositories.
2️⃣ Authentication & Usage
Sorsa.io uses a custom header for authentication.- Header Name:
ApiKey - Base URL:
https://api.sorsa.io/v3
GET https://api.sorsa.io/v3/key-usage-info
3️⃣ Your First Request: Retrieve User Info
To fetch profile data using a username (handle), use the/info endpoint.
cURL Example:
Bash
4️⃣ Python Implementation
Using therequests library is the most straightforward way to integrate Sorsa.io.
Python
❌ Error Codes
| Code | Meaning |
|---|---|
| 200 | Success |
| 400 | Bad Request |
| 403 | Unauthorized |
| 404 | Not Found |
| 429 | Too Many Requests |
| 500 | Server Error |
⏭ Next steps
- Authentication — Security best practices.
- Pagination — How to handle cursors.
- Rate limits — Headers and retries.
- API Reference — Full endpoint list.