Skip to content
Reference

API Reference

RESTful. Predictable. Fully audit-logged.

Authentication

All endpoints require a bearer token. Create tokens under Settings → API tokens. Tokens are scoped to a single organization and can be rotated at any time.

GET/v1/projects

List projects

curl -X GET 'https://api.falconcloud.io/v1/projects' \
  -H 'Authorization: Bearer fck_live_...' \
  -H 'Content-Type: application/json'
Response · 200
{ "data": [ { "id": "proj_...", "name": "prod-api", "region": "ap-south-1", "status": "healthy" } ] }