Coming Soon
API Documentation
Programmatic access to Varimuse for developers and integrations.
API Access Coming Q1 2025
We are building a comprehensive API that will allow you to integrate Varimuse into your own applications and workflows. Join the waitlist to be notified when it launches.
Join API WaitlistPlanned Features
API Keys
Secure authentication with revocable API keys
RESTful Design
Clean, predictable REST endpoints
Rate Limiting
Fair usage limits to ensure availability
JSON Responses
Consistent JSON format for all responses
Planned Endpoints
POST
/api/v1/runsGET
/api/v1/runs/:idPOST
/api/v1/variations/generateGET
/api/v1/trophiesGET
/api/v1/credits/balanceExample Request
Example: Create a new run
curl -X POST https://api.varimuse.ai/v1/runs \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "images",
"prompt": "A serene mountain landscape",
"dimensions": [
{ "name": "style", "values": ["photorealistic", "watercolor", "oil painting"] },
{ "name": "time", "values": ["sunrise", "sunset", "night"] }
]
}'