Learn how to authenticate your requests to the Extend API
Authorization
Authorization: Bearer <API_TOKEN>
const makeAuthenticatedRequest = async () => { const response = await fetch('https://api-prod.extend.app/workflow_runs/workflow_run_1234', { method: 'GET', headers: { 'Authorization': 'Bearer YOUR_API_TOKEN', 'Content-Type': 'application/json', 'Extend-Api-Version': '2024-11-14' } }); return response.json(); };
curl -X GET https://api-prod.extend.app/workflow_runs \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Extend-Api-Version: 2024-11-14" -d '{ ... }'
401 Unauthorized