TERMS OF USEPOLICIESREFUND

API

Connect our intelligence to your automation ecosystem.

Extraction API

Automate your searches and receive structured data directly in your system using our asynchronous REST API.

01

Trigger the Search (POST)

Send an authenticated HTTP POST request with your search term and parameters. Our API will immediately return a protocol confirming receipt.

02

Receive the Response (Webhook)

We process your search in background. Once the data is collected and structured, we send a full JSON payload directly to your configured Webhook.

01. Individual Extraction (Curl)

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"
}'

02. Batch Extraction (Curl)

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.