Skip to main content
POST
/
v1
/
tasks
Add Tasks
curl --request POST \
  --url https://api.lobstr.io/v1/tasks \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "squid": "<string>",
  "tasks": [
    {}
  ],
  "tasks[].url": "<string>"
}
'
Add LaCentrale listing URLs to your LaCentrale Listing Status Checker squid. Each task checks whether the listing is still active or has been deactivated or expired.

Headers

Authorization
string
required
Your API authentication token. Value: Token YOUR_API_KEY
Content-Type
string
required
Must be application/json. Value: application/json

Body

squid
string
required
Hash ID of your squid.
tasks
array
required
Array of task objects. Each task must include a url field.

Task Fields

tasks[].url
string
required
LaCentrale listing URL. Example: https://www.lacentrale.fr/auto-occasion-annonce-66103802227.html
Only auto-occasion-annonce URLs are supported. The URL must match the pattern lacentrale.fr/auto-occasion-annonce-{id}.html.

Code Examples

curl -X POST "https://api.lobstr.io/v1/tasks" \
  -H "Authorization: Token YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "squid": "YOUR_SQUID_HASH",
    "tasks": [
      { "url": "https://www.lacentrale.fr/auto-occasion-annonce-66103802227.html" },
      { "url": "https://www.lacentrale.fr/auto-occasion-annonce-66104112345.html" }
    ]
  }'

Response

200
{
  "duplicated_count": 0,
  "tasks": [
    {
      "id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
      "created_at": "2026-06-02T10:00:00.000000",
      "is_active": true,
      "params": {
        "url": "https://www.lacentrale.fr/auto-occasion-annonce-66103802227.html"
      },
      "object": "task"
    }
  ]
}