Get Project by Key
Import project deals with how to load a pre-existing project by sending api requests in JSON format.
1. API endpoint
https://v2.aistudios.com/api/odin/editor/project/${key}
2. Response parameters
key | desc | type |
---|---|---|
success | Success Rate | Boolean |
response | Project data | Json |
response.projectName | Project name | String |
response.scenes | scene data | Array(json) |
msg | Error Message | Boolean |
3. Sample Request
- cURL
- Node.js
- Python
curl https://v2.aistudios.com/api/odin/editor/project/${project key} \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X GET
import axios from "axios"
const token = ${API KEY}
axios.get('https://v2.aistudios.com/api/odin/editor/project/${project key}',
{
headers: {
'Authorization': ${token},
'Content-Type': 'application/json'
}
}
)
.then((res) => {
console.log(res.data)
})
.catch((error) => {
console.error(error)
})
import requests
import json
url = "https://v2.aistudios.com/api/odin/editor/project/${project key}"
headers = {
"Content-Type": "application/json",
"Authorization": ${API TOKEN}
}
r = requests.get(url, headers=headers)