Skip to main content
DELETE
/
v1
/
squids
/
{id}
/
chain
Delete Squid Chain
curl --request DELETE \
  --url https://api.lobstr.io/v1/squids/{id}/chain \
  --header 'Authorization: <authorization>'

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.

Removes the chain configuration from a squid. The source and target squids themselves are not deleted — only the link between them.

Path Parameters

id
string
required
Hash ID of the source squid. Example: "e86b29c032024b66aff529e1d43c2bd7"

Headers

Authorization
string
required
Your API authentication token. Value: Token YOUR_API_KEY

Code Examples

curl -X DELETE "https://api.lobstr.io/v1/squids/e86b29c032024b66aff529e1d43c2bd7/chain" \
  -H "Authorization: Token YOUR_API_KEY"

Response

204
404
{
  "error": "No chain configured on this squid."
}