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 Instagram Posts Scraper squid settings. Control the maximum number of posts collected, filter by time range, and exclude pinned posts.

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
max_resultsintegerunlimitedTotal posts the crawler will collect per profile
max_unique_results_per_runintegerunlimitedMaximum number of unique posts retrieved across all tasks in the entire run
fetch_sincestringunlimitedStop scraping when items older than this threshold are reached (based on published_at). Use a relative duration (24h, 7d, 2w) or an absolute date (YYYY-MM-DD HH:MM)
fetch_since_timezonestringnullTimezone for interpreting an absolute fetch_since date (e.g. Europe/Paris). Only applies when fetch_since is an absolute date — ignored for relative values like 24h or 7d. See supported timezones.
skip_pinned_postsbooleanfalseIf enabled, pinned posts will be excluded from the results

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
Use fetch_since to only collect recent posts - great for monitoring accounts for new content.
Leave limits empty or null for unlimited collection.
Enable skip_pinned_posts when you only want organic timeline posts without promotional pinned content.

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 '{
    "export_unique_results": true,
    "params": {
      "max_results": 50,
      "max_unique_results_per_run": 1000,
      "fetch_since": "7d",
      "skip_pinned_posts": false
    }
  }'

Response

201
{
  "export_unique_results": true,
  "params": {
    "max_results": 50,
    "max_unique_results_per_run": 1000,
    "fetch_since": "7d",
    "skip_pinned_posts": false
  }
}