Authentication
The DataParse API uses simple API key authentication. Include your API key in the x-api-key header of every request.
Headers
Section titled “Headers”x-api-key: YOUR_API_KEYExample
Section titled “Example”curl -X POST https://api.datapar.se/v1/ \ -H "x-api-key: your_api_key_here" \ -H "Content-Type: application/json" \ -d '{"schema": {...}, "contents": [...]}'Error Response
Section titled “Error Response”If authentication fails, you’ll receive a 401 Unauthorized response:
{ "error": "Unauthorized"}