Connect our intelligence to your automation ecosystem.
Automate your searches and receive structured data directly in your system using our asynchronous REST API.
Send an authenticated HTTP POST request with your search term and parameters. Our API will immediately return a protocol confirming receipt.
We process your search in background. Once the data is collected and structured, we send a full JSON payload directly to your configured Webhook.
curl -L -X POST 'https://api.extractormaps.com/v1/searches/individual' \
--header 'x-api-key: TOKEN_AQUI' \
--header 'Content-Type: application/json' \
--data-raw '{
"searchTerm": "Restaurantes em SP"
}'curl -L -X POST 'https://api.extractormaps.com/v1/searches/batch' \
--header 'x-api-key: TOKEN_AQUI' \
--header 'Content-Type: application/json' \
--data-raw '{
"searchTerms": ["Pizza em SP", "Sushi em SP"]
}'Create an account to get your bearer token.