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 Waitlist

Planned 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/runs
Create a new exploration run
GET
/api/v1/runs/:id
Get run details and variations
POST
/api/v1/variations/generate
Generate new variations
GET
/api/v1/trophies
List saved trophies
GET
/api/v1/credits/balance
Check credit balance

Example 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"] }
    ]
  }'