URL: /baas/api/getting-started/quick-start/first-call --- title: "First Call" description: "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 ```bash 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 ```json { "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](/baas/api/development) - Review [Integration Guides](/baas/api/integration/flows) - Browse the [API Reference](/baas/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 | ## Next Steps Set up your dev environment Start integrating