DeizaDeizaHelp
HelpSettingsAPI Access

API Access

Use the Deiza API for programmatic access

5 min read

API Access

The Deiza API allows you to programmatically access your data and integrate with external tools.

Requirements

API access is available on the Scale plan only.

Creating an API Key

  1. Go to Settings > API
  2. Click Create API Key
  3. Enter a name for the key (e.g., "Zapier Integration")
  4. Click Create Key
  5. Copy the key immediately — it will not be shown again

Using Your API Key

Include your API key in the Authorization header:

curl -X GET https://deiza.io/api/v1/contacts \
  -H "Authorization: Bearer dza_your_api_key_here" \
  -H "Content-Type: application/json"

Available Endpoints

Core Endpoints

EndpointMethodsDescription
/api/v1/contactsGET, POSTManage contacts
/api/v1/invoicesGET, POSTManage invoices
/api/v1/websitesGETGet website info

Rate Limits

  • 1,000 requests per day per API key
  • Rate limit resets at midnight UTC
  • Monitor usage in the API settings page

Security Best Practices

  • Keep your API keys secret
  • Rotate keys periodically
  • Use read-only keys when possible
  • Never expose keys in client-side code
Was this helpful?