Ready
GET
Ready
Authorizations
Project API key (sk-kupe-...) or a Supabase user JWT.
Response
200 - application/json
Successful Response
Ready
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import requests
url = "https://x.kupe.in/ready"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://x.kupe.in/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://x.kupe.in/ready \
--header 'Authorization: Bearer <token>'Project API key (sk-kupe-...) or a Supabase user JWT.
Successful Response
import requests
url = "https://x.kupe.in/ready"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://x.kupe.in/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://x.kupe.in/ready \
--header 'Authorization: Bearer <token>'