Documentation Index
Fetch the complete documentation index at: https://docs.versuno.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Every request must include your API key as a Bearer token in theAuthorization header.
Base URL
Quick Start
List your assets
Create an asset
Save a version checkpoint
Revert to a previous version
Rate Limits
The Public API enforces a limit of 50 requests per minute per API key. When you exceed the limit, the API returns429:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed per window (50) |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp (ms) when the window resets |
Error Handling
The API uses standard HTTP status codes.| Status | Meaning | What to do |
|---|---|---|
200 | Success | Process the response normally |
400 | Bad Request | Check request body — a required field is missing or invalid |
401 | Unauthorized | Verify your API key is correct and not suspended |
404 | Not Found | The resource doesn’t exist or belongs to another user |
409 | Conflict | The operation conflicts with the current state (e.g. already trashed) |
500 | Server Error | Retry with backoff, contact support if persistent |
Error response format
All errors return a JSON body with a singleerror field:
Key Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /assets | List all assets with optional filters |
POST | /assets | Create a new asset |
GET | /assets/{assetId} | Get a single asset |
PATCH | /assets/{assetId}/update | Update an asset |
POST | /assets/{assetId}/trash | Move an asset to trash |
PUT | /assets/{assetId}/trash | Restore an asset from trash |
DELETE | /assets/{assetId}/trash | Permanently delete a trashed asset |
GET | /projects | List all projects |
POST | /projects | Create a project |
GET | /assets/{assetId}/versions | List version history for an asset |
POST | /assets/{assetId}/versions | Save a version checkpoint |
POST | /assets/{assetId}/versions/{versionId}/revert | Revert to a version |
Check the API Reference for complete endpoint documentation with interactive examples, full request/response schemas, and parameter descriptions.

