Loading...
Loading...
Get started with Diffly in just a few minutes. Follow these steps to set up your first API integration and start monitoring for changes.
Sign up for a free Diffly account using your email address.
Connect your API endpoint with authentication details.
Diffly will capture your current API response as a baseline.
Receive alerts when breaking changes are detected.
Diffly uses API keys for authentication. You can create and manage API keys from your dashboard settings.
curl -H "Authorization: Bearer your-api-key" \
-H "X-Workspace-ID: your-workspace-id" \
https://diffly.dev/api/integrationsConnect your APIs to start monitoring for changes. Diffly supports various authentication methods including Bearer tokens, API keys, and OAuth.
curl -X POST https://diffly.dev/api/integrations \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"name": "My API",
"endpoint_url": "https://api.example.com/v1/users",
"auth_type": "bearer",
"auth_value": "your-api-token",
"poll_interval_sec": 900
}'Configure how often Diffly checks your APIs and what types of changes to alert you about.