Skip to main content
Artificial Studio provides a single API to generate images, videos, audio, and 3D models using state-of-the-art AI models. Send a request, get a result — it’s that simple.

Base URL

All API requests use the following base URL:
https://api.artificialstudio.ai

How it works

Every generation follows the same three-step pattern:
1

Send a request

Call POST /api/run with a tool, model, and input parameters. You get back a generation ID immediately.
2

Wait for the result

Poll GET /api/generations/:id or use webhooks to get notified when the generation is ready.
3

Get your output

The completed generation includes an output URL pointing to your generated media.

Quick example

curl -X POST https://api.artificialstudio.ai/api/run \
  -H "Content-Type: application/json" \
  -H "Authorization: YOUR_API_KEY" \
  -d '{
    "tool": "create-image",
    "input": {
      "prompt": "A serene mountain landscape at sunset"
    }
  }'
{
  "id": "507f1f77bcf86cd799439011",
  "status": "processing",
  "tool": "create-image",
  "createdAt": "2024-01-15T10:30:00.000Z"
}

Available tools

ToolDescriptionExample models
create-imageGenerate images from text promptsNano Banana, Flux 2 Flex, Google Image 4
create-videoCreate videos from text or imagesWan v2.2, Kling O3, Runway Gen4
text-to-speechConvert text to natural speechOpenAI TTS, ElevenLabs TTS
create-musicGenerate music from text promptsMusicGen
sound-effectsGenerate sound effectsAudioGen
edit-imageEdit images with AINano Banana Edit, Seedream 4.0 Edit
upscale-imageEnhance image resolutionClarity Upscaler
remove-backgroundRemove backgrounds from imagesBackground Remover
animate-imageAnimate a still image into videoWan v2.2 Image to Video
image-to-3dConvert images to 3D modelsTripoSR, InstantMesh
Use GET /api/tools to see the full list of available tools and models.

Next steps

Get your API key

Create an API key and authenticate your requests.

Quick start

Generate your first image in under a minute.

API reference

See the full API reference for creating generations.

Browse models

Explore available models and their parameters.