GET
/platforms List platforms
Platform IDs usable as filters. No workspace required.
Authenticate with
Authorization: Bearer obk_live_xxx. See authentication. Responses
200 OK
| Field | Type | Description |
|---|---|---|
platforms | object[] |
Example request
curl --request GET \
--url https://app.orchly.ai/api/v1/platforms \
--header 'Authorization: Bearer obk_live_xxx'const res = await fetch(`https://app.orchly.ai/api/v1/platforms`, {
method: 'GET',
headers: {
'Authorization': 'Bearer obk_live_xxx',
},
});
const data = await res.json();import requests
resp = requests.get(
"https://app.orchly.ai/api/v1/platforms",
headers={
"Authorization": "Bearer obk_live_xxx",
},
)
data = resp.json() Example response
A 200 response. Dynamic fields are shown as their type.
{
"platforms": [
{}
]
}