First Call
Make your first FinHub API call
First Call
Make your first API call to verify your integration is working.
Test Endpoint
Let’s call a simple endpoint to verify connectivity:
GET /api/v2/tenant/info
Example Request
curl -X GET "https://gateway.finhub.cloud/api/v2/tenant/info" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "X-Tenant-ID: YOUR_TENANT_ID" \
-H "Content-Type: application/json"Expected Response
{
"tenantId": "1234567",
"tenantName": "Your Company",
"status": "active",
"products": ["FinCore", "FinTrans"]
}Success!
If you received a successful response, your integration is working. You’re ready to:
- Explore the Development Environment
- Review Integration Guides
- Browse the API Reference
Troubleshooting
| Error | Solution |
|---|---|
| 401 Unauthorized | Check access token, may be expired |
| 403 Forbidden | Check Tenant ID header |
| 404 Not Found | Check endpoint URL |