Introduction: Authentication is required to access the API endpoints. The API uses a standard Bearer Token approach for authentication. The token must be included in the header of each request.
Authentication Details:
Authorization: Bearer [Your_Token]
CURL Example for 2. Retrieve Extraction Results Endpoint:
Here's an example of how to use curl
to make a request to the "Retrieve Extraction Results" endpoint with the Bearer Token authentication:
curl -X GET '<https://eo21sivupyzdrme.ai-api.business-monitor.ch?request_id=recZUwUEFXCsTKRpb>' \\\\
-H 'Authorization: Bearer YOUR_API_KEY' \\\\
-H 'Content-Type: application/json'
Explanation:
YOUR_API_KEY
with your actual Business-Monitor API key.request_id
parameter in the URL should be the unique identifier obtained from the extraction process.Authorization
header is used to pass the Bearer Token to authenticate the request.Notes:
Introduction: This endpoint is used to start an extraction process. It requires certain parameters to be sent in the request body. Upon successful initiation, it provides a unique request ID for tracking the process.
Endpoint Details: