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.
Updates settings on an existing chain configuration. Only the fields you include in the request body are updated.
If the target squid has already been created by a previous chain trigger, updating cluster_concurrency will apply the new value to that squid immediately.
Path Parameters
Hash ID of the source squid. Example: "e86b29c032024b66aff529e1d43c2bd7"
Your API authentication token. Value: Token YOUR_API_KEY
Must be application/json. Value: application/json
Request Body
Whether downstream runs start automatically on task queue.
Update the name of the target squid.
Update the concurrency of the target squid.
Code Examples
curl -X PATCH "https://api.lobstr.io/v1/squids/e86b29c032024b66aff529e1d43c2bd7/chain" \
-H "Authorization: Token YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"autostart": false,
"cluster_concurrency": 5
}'
Response
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"target_module": {
"id": "9a3f1c8b2e7d4a56f0e1b2c3d4e5f678",
"public_name": "Google Maps Reviews Scraper",
"name": "googlemapreviews_matrix",
"max_concurrency": 10
},
"target_cluster": {
"id": "f7e8d9c0b1a2f7e8d9c0b1a2f7e8d9c0",
"hash_value": "f7e8d9c0b1a2f7e8d9c0b1a2f7e8d9c0",
"name": "Reviews (chained)"
},
"field_map": {"url": "url"},
"is_active": true,
"autostart": false,
"cluster_name": "Reviews (chained)",
"cluster_concurrency": 5,
"created_at": "2026-04-28T10:00:00Z"
}
{
"error": "No chain configured on this squid."
}