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

Documentation Index

Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt

Use this file to discover all available pages before exploring further.

Configure your Sales Navigator Profile Scraper squid settings. Enable email and mobile enrichment to find contact details for the profiles you scrape.

Headers

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

Optional Functions

Enable these in the params.functions object:
FunctionTypeDefaultDescription
email_enrichmentbooleantrueFind email addresses for each profile (9 credits per profile where an email is found)
mobile_enrichmentbooleanfalseFind mobile phone numbers for each profile (300 credits per profile where a mobile number is found)

Squid Settings

Configure general squid settings:
SettingTypeDescription
namestringDisplay name for your squid configuration
concurrencyintegerNumber of parallel scraping threads (default: 1)
accountsarrayArray of linked Sales Navigator account hashes (required)
export_unique_resultsbooleanExport only unique results (deduplicated)
to_completebooleanRun until all tasks complete
no_line_breaksbooleanRemove line breaks from results
email_enrichment is enabled by default and costs 9 credits per profile where an email is found. Disable it if you don’t need email data.
mobile_enrichment costs 300 credits per profile where a mobile number is found. Only enable when mobile numbers are specifically required.
This scraper requires a synced Sales Navigator account. Add your LinkedIn Sales Navigator cookies in the Accounts section before running.

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": "Sales Nav Profile Scraper (1)",
    "concurrency": 1,
    "export_unique_results": true,
    "to_complete": false,
    "no_line_breaks": true,
    "params": {
      "functions": {
        "email_enrichment": true,
        "mobile_enrichment": false
      }
    }
  }'

Response

201
{
  "name": "Sales Nav Profile Scraper (1)",
  "concurrency": 1,
  "export_unique_results": true,
  "to_complete": false,
  "no_line_breaks": true,
  "params": {
    "functions": {
      "email_enrichment": true,
      "mobile_enrichment": false
    }
  }
}