Skip to main content
POST
/
v1
/
squids
/
{squid_hash}
Update Settings
curl --request POST \
  --url https://api.lobstr.io/v1/squids/{squid_hash} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
Configure your Leboncoin Boutiques Scraper squid settings. Enable enrichment functions to collect additional store details, phone numbers, and business registration data.

Headers

Authorization
string
required
Your API authentication token. Value: Token YOUR_API_KEY
Content-Type
string
required
Request body format. Value: application/json

Scraper Parameters

Set these parameters in the params object:
ParameterTypeDefaultDescription
get_detailsbooleantrueFetch full store data: address, SIREN/SIRET, GPS coordinates, opening hours, description, and ratings (1 credit per store)
get_phone_numbersbooleantrueRetrieve phone numbers for each store. No account required (1 credit per store)
max_resultsintegerunlimitedMaximum stores collected per URL
max_pagesinteger99Maximum number of pages to crawl per URL
max_unique_results_per_runintegerunlimitedMaximum unique results across all tasks in the run

Squid Settings

Configure general squid settings:
SettingTypeDescription
namestringDisplay name for your squid configuration
concurrencyintegerNumber of parallel scraping threads (default: 1)
export_unique_resultsbooleanExport only unique results (deduplicated)
to_completebooleanRun until all tasks complete
no_line_breaksbooleanRemove line breaks from results
Enabling get_details or get_phone_numbers adds an extra request per store, increasing run time and credit usage.

Code Examples

curl -X POST "https://api.lobstr.io/v1/squids/YOUR_SQUID_HASH" \
  -H "Authorization: Token YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Leboncoin Boutiques Scraper (1)",
    "concurrency": 2,
    "export_unique_results": true,
    "to_complete": true,
    "params": {
      "get_details": true,
      "get_phone_numbers": true,
      "max_results": 500,
      "max_pages": 10
    }
  }'

Response

201
{
  "name": "Leboncoin Boutiques Scraper (1)",
  "concurrency": 2,
  "export_unique_results": true,
  "to_complete": true,
  "params": {
    "get_details": true,
    "get_phone_numbers": true,
    "max_results": 500,
    "max_pages": 10
  }
}