Create World
curl --request POST \
--url https://api.continuouslabs.ai/v1/worlds \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "support-demo",
"simulations": {
"billing": {
"simulator": "smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5"
}
}
}
'package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.continuouslabs.ai/v1/worlds"
payload := strings.NewReader("{\n \"name\": \"support-demo\",\n \"simulations\": {\n \"billing\": {\n \"simulator\": \"smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}import requests
url = "https://api.continuouslabs.ai/v1/worlds"
payload = {
"name": "support-demo",
"simulations": { "billing": { "simulator": "smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5" } }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'support-demo',
simulations: {billing: {simulator: 'smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5'}}
})
};
fetch('https://api.continuouslabs.ai/v1/worlds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"created_at": "2026-01-15T12:00:00Z",
"from": "",
"id": "wld_01J8Z5X4K7M2N9P0Q1R2S3T4V7",
"members": {
"billing": {
"simulation_id": "sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6",
"status": "running"
}
},
"name": "support-demo",
"seed": "demo-seed",
"services": {
"billing": {
"endpoint": "https://api.continuouslabs.ai/sim/sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6",
"simulation_id": "sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6"
}
},
"status": "running"
}Worlds
Create World
Creates a World from named Simulator references. Service endpoints appear when the World is running.
POST
https://api.continuouslabs.ai
/
v1
/
worlds
Create World
curl --request POST \
--url https://api.continuouslabs.ai/v1/worlds \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "support-demo",
"simulations": {
"billing": {
"simulator": "smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5"
}
}
}
'package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.continuouslabs.ai/v1/worlds"
payload := strings.NewReader("{\n \"name\": \"support-demo\",\n \"simulations\": {\n \"billing\": {\n \"simulator\": \"smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}import requests
url = "https://api.continuouslabs.ai/v1/worlds"
payload = {
"name": "support-demo",
"simulations": { "billing": { "simulator": "smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5" } }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'support-demo',
simulations: {billing: {simulator: 'smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5'}}
})
};
fetch('https://api.continuouslabs.ai/v1/worlds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"created_at": "2026-01-15T12:00:00Z",
"from": "",
"id": "wld_01J8Z5X4K7M2N9P0Q1R2S3T4V7",
"members": {
"billing": {
"simulation_id": "sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6",
"status": "running"
}
},
"name": "support-demo",
"seed": "demo-seed",
"services": {
"billing": {
"endpoint": "https://api.continuouslabs.ai/sim/sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6",
"simulation_id": "sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6"
}
},
"status": "running"
}Authorizations
Use a Continuous API key. Send it in the Authorization header as a Bearer token.
Body
application/json
Response
Created
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
creating, running, stopped, failed Show child attributes
Show child attributes
