Skip to main content
GET
/
universes
/
{universe_id}
/
initial_data
Get init data
curl --request GET \
  --url https://api.klavis.ai/universes/{universe_id}/initial_data \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.klavis.ai/universes/{universe_id}/initial_data"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.klavis.ai/universes/{universe_id}/initial_data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.klavis.ai/universes/{universe_id}/initial_data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Klavis AI API key.

Path Parameters

universe_id
string
required

Response

Successful Response