Direct access
Provider-owned integration
This listing is discovery-only. Calls go straight to the provider and follow the provider's docs and auth model.
Marketplace execution
Disabled
Auth and payment
Provider-defined
Use this listing to discover StableStudio docs and generative media workflows for agents.
## Access model
This is a discovery-only external API. Calls go directly to the provider; the marketplace does not proxy, authenticate, or settle them.
## Setup
1. Review the provider docs before calling any endpoint.
2. Authenticate directly with the provider as required by the provider.
3. Authenticate directly with StableStudio as required by the provider.
## External Endpoints
### Confirm uploaded file
Method: POST
Direct URL: https://stablestudio.dev/api/upload/confirm
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/upload/confirm" \
-H "Content-Type: application/json" \
-d '{
"blobUrl": "https://blob.vercel-storage.com/example.png",
"uploadId": "uuid"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Flux 2 Pro image editing
Method: POST
Direct URL: https://stablestudio.dev/api/generate/flux-2-pro/edit
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/flux-2-pro/edit" \
-H "Content-Type: application/json" \
-d '{
"images": [
"https://example.com"
],
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Flux 2 Pro image generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/flux-2-pro/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/flux-2-pro/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### GPT Image 1 editing
Method: POST
Direct URL: https://stablestudio.dev/api/generate/gpt-image-1/edit
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/gpt-image-1/edit" \
-H "Content-Type: application/json" \
-d '{
"images": [
"https://example.com"
],
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### GPT Image 1 generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/gpt-image-1/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/gpt-image-1/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### GPT Image 1.5 editing
Method: POST
Direct URL: https://stablestudio.dev/api/generate/gpt-image-1.5/edit
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/gpt-image-1.5/edit" \
-H "Content-Type: application/json" \
-d '{
"images": [
"https://example.com"
],
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### GPT Image 1.5 generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/gpt-image-1.5/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/gpt-image-1.5/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Grok image editing
Method: POST
Direct URL: https://stablestudio.dev/api/generate/grok/edit
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/grok/edit" \
-H "Content-Type: application/json" \
-d '{
"images": [
"https://example.com"
],
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Grok image generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/grok/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/grok/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Grok video generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/grok-video/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/grok-video/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### List jobs
Method: GET
Direct URL: https://stablestudio.dev/api/jobs
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X GET "https://stablestudio.dev/api/jobs"
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nano Banana Pro image editing (up to 4K)
Method: POST
Direct URL: https://stablestudio.dev/api/generate/nano-banana-pro/edit
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/nano-banana-pro/edit" \
-H "Content-Type: application/json" \
-d '{
"images": [
"https://example.com"
],
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nano Banana Pro image generation (up to 4K)
Method: POST
Direct URL: https://stablestudio.dev/api/generate/nano-banana-pro/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/nano-banana-pro/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nano Banana image editing
Method: POST
Direct URL: https://stablestudio.dev/api/generate/nano-banana/edit
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/nano-banana/edit" \
-H "Content-Type: application/json" \
-d '{
"images": [
"https://example.com"
],
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nano Banana image generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/nano-banana/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/nano-banana/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Poll job status and retrieve results
Method: GET
Direct URL: https://stablestudio.dev/api/jobs/:jobId
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X GET "https://stablestudio.dev/api/jobs/:jobId"
Fast only lists this provider and its docs; execution happens directly against the provider.
### Seedance Fast image-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/generate/seedance-fast/i2v
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/seedance-fast/i2v" \
-H "Content-Type: application/json" \
-d '{
"image": "https://example.com",
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Seedance Fast text-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/generate/seedance-fast/t2v
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/seedance-fast/t2v" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Seedance image-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/generate/seedance/i2v
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/seedance/i2v" \
-H "Content-Type: application/json" \
-d '{
"image": "https://example.com",
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Seedance text-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/generate/seedance/t2v
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/seedance/t2v" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Sora 2 Pro video generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/sora-2-pro/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/sora-2-pro/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Sora 2 video generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/sora-2/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/sora-2/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Upload image for editing or image-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/upload
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/upload" \
-H "Content-Type: application/json" \
-d '{
"filename": "string",
"contentType": "image/jpeg"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Veo 3.1 Fast video generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/veo-3.1-fast/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/veo-3.1-fast/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Veo 3.1 video generation
Method: POST
Direct URL: https://stablestudio.dev/api/generate/veo-3.1/generate
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/veo-3.1/generate" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Wan 2.6 image-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/generate/wan-2.6/i2v
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/wan-2.6/i2v" \
-H "Content-Type: application/json" \
-d '{
"image": "https://example.com",
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Wan 2.6 text-to-video
Method: POST
Direct URL: https://stablestudio.dev/api/generate/wan-2.6/t2v
Docs: https://stablestudio.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablestudio.dev/api/generate/wan-2.6/t2v" \
-H "Content-Type: application/json" \
-d '{
"prompt": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.Have a request?