Get set up
- Grab your API key from Settings -> API Keys.
- Import the spec URL:
https://app.dilli.studio/openapi/dilli.openapi.yaml. - Set two variables:
baseUrl = https://app.dilli.studio/api/v1andX-Api-Key = YOUR_KEY. - Add a default header
X-Api-Key: {{X-Api-Key}}so every request is authorized.
Send a quick request
- Use the generated
GET /contactsrequest and hit Send. If you see 401, double-check the key and header name. - Want to try more? Duplicate a request and edit the URL or body; the spec already includes the shapes for you.
Notes for popular tools
- Postman: Import from link, set environment vars, and add the header at collection level.
- Insomnia: Import from URL and set workspace variables; add a global header.
- Hoppscotch/Bruno: Import the OpenAPI URL, set
baseUrlandX-Api-Key, and run from the sidebar.
Keep it simple
- Use the spec as your source of truth; it stays in sync with the live API.
- Prefer creating and activating/deactivating resources instead of deleting them so your history stays intact.

