get__
GET /
API Status
Check if the Flashback API is running and accessible.
This endpoint is useful for:
Health monitoring
Load balancer health checks
Verifying API connectivity
TypeScript Client Library
// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';
const client = new FlashbackClient({ accessToken: 'your-access-token' });
// Check API root status
try {
const result = await client.health.root();
console.log('API status:', result);
} catch (error) {
console.error('API status check failed:', error);
}Code Samples
Example responses
200 Response
Responses
Status
Meaning
Description
Schema
Response Schema
Status Code 200
Name
Type
Required
Restrictions
Description
» message
string
false
none
none
Last updated
Was this helpful?