Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://app.bily.ai/api/customer/v1/organizations \ --header 'x-api-key: <api-key>'
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};fetch('https://app.bily.ai/api/customer/v1/organizations', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requestsurl = "https://app.bily.ai/api/customer/v1/organizations"headers = {"x-api-key": "<api-key>"}response = requests.get(url, headers=headers)print(response.text)
{ "organizations": [ { "id": "<string>", "name": "<string>", "slug": "<string>", "role": "<string>", "createdAt": "<string>" } ] }
{ "error": "Store not found", "requestId": "<string>", "details": "<unknown>", "retryAfter": "<string>"}
Lists every Bily organization available to the authenticated identity.
A server-side Bily API key created under Settings > MCP > Access key fallback. Select the intended store before creating it.
Request completed successfully.
Show child attributes