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

# You can also use wget
curl -X GET https://backend.flashback.tech/ \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Example responses

200 Response

{
  "message": "Flashback (0.0.49) API is running"
}

Responses

Status
Meaning
Description
Schema

200

API is running

Inline

Response Schema

Status Code 200

Name
Type
Required
Restrictions
Description

» message

string

false

none

none

Last updated

Was this helpful?