RocketFi follows common REST conventions. The exact paths and bodies are defined in the REST API reference (generated from OpenAPI).Documentation Index
Fetch the complete documentation index at: https://api.docs.rocketfi.io/llms.txt
Use this file to discover all available pages before exploring further.
Supported verbs
| Method | Meaning |
|---|---|
GET | Read a resource or list. Query parameters carry filters, pagination, and ids unless the path uses path parameters. |
POST | Create a resource or submit an action (for example batch operations) when the API models it as a creation or command. |
PATCH | Partial update when an endpoint supports partial modification. |
DELETE | Remove or cancel when supported by the route. |
Request format
- Prefer
Content-Type: application/jsonfor bodies unless an endpoint explicitly accepts something else (for example plain text on the health/ping route). - Send query parameters in standard
?name=value&name2=value2form unless the OpenAPI entry shows a different style.