developers.eyebrow
developers.hero.title
developers.hero.description
developers.hero.ctaSpec developers.hero.ctaStatus
cURL
curl -sS https://olise.ai/api/public/v1/contacts \
-H 'Content-Type: application/json' \
-H 'X-API-Key: olise_live_…' \
-d '{"phone":"+13055551212","name":"Jane Doe"}'Node
import { OliseClient } from '@olise/sdk'
const olise = new OliseClient(process.env.OLISE_API_KEY!)
const contact = await olise.contacts.create({
phone: '+13055551212',
name: 'Jane Doe',
})Python
import os, requests
r = requests.post(
"https://olise.ai/api/public/v1/contacts",
headers={"X-API-Key": os.environ["OLISE_API_KEY"]},
json={"phone": "+13055551212", "name": "Jane Doe"},
)
print(r.json())developers.auth.title
developers.auth.description
- developers.auth.step1
- developers.auth.step2
- developers.auth.step3
developers.rateLimits.title
developers.rateLimits.description
| developers.rateLimits.colPlan | developers.rateLimits.colBurst | developers.rateLimits.colMonthly |
|---|---|---|
| Starter | 10 req/s | 50,000 / mo |
| Growth | 50 req/s | 500,000 / mo |
| Enterprise | Custom | Custom |
developers.webhooks.title
developers.webhooks.description
developers.webhooks.catalog
developers.endpoints.title
developers.endpoints.baseUrl https://olise.ai/api/public
- GET
/v1/contacts - POST
/v1/contacts - GET
/v1/contacts/:id - PATCH
/v1/contacts/:id - GET
/v1/calls - GET
/v1/calls/:id - GET
/v1/reservations - POST
/v1/reservations - GET
/v1/reservations/:id - PATCH
/v1/reservations/:id - POST
/v1/outbound - GET
/v1/usage
developers.sdks.eyebrow
developers.sdks.title
TypeScript
@olise/sdk
developers.sdks.ts.description
Coming Q3 2026
Python
olise-python
developers.sdks.python.description
Coming Q4 2026