Skip to main content

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:

Troubleshooting

ErrorSolution
401 UnauthorizedCheck access token, may be expired
403 ForbiddenCheck Tenant ID header
404 Not FoundCheck endpoint URL

Next Steps