Datablow API Reference

Everything you need to integrate Datablow into your stack โ€” send conversion events, manage pipelines, verify API keys, and provision GTM containers programmatically.

Base URL: https://tracking.datablow.com
Auth: x-api-key header
Format: JSON
Version: v1

๐Ÿ”‘
Authentication
All API requests must include your API key in the x-api-key request header. You can generate API keys from the API Keys tab in your Datablow dashboard. Keys take the format db_live_....
GET /api/auth/verify Verify API Key
๐ŸŸข Authenticated via x-api-key header
Test that your API key is valid and active. Use this as the authentication test endpoint in ViaSocket, Zapier, Make, or any integration platform.
cURL Example
curl -X GET "https://tracking.datablow.com/api/auth/verify" \
  -H "x-api-key: db_live_your_key_here"
Response
{ "valid": true, "user": "user@example.com", "plan": "growth" }