BizKitHub
DocsAPI ReferenceService/api/service/scheduler/claim
postServiceService

/api/service/scheduler/claim

Claim up to N pending scheduler requests for a runner. Atomically marks them with the runnerId so concurrent runners cannot pick the same job. Returns the URL list to be crawled.

servicepostApiServiceSchedulerClaim

Parameters

JSON body

Request body

application/json
apiKeystringRequired
runnerIdstringRequired
Length: 48
limitnumberOptional
Range: 1200

Response schema

1 status code documented

200Success

This response returns no JSON body.

Response example

application/json
{
  "success": true
}

Request example

POST /api/service/scheduler/claim

post
curl -X POST "https://api.bizkithub.com/api/service/scheduler/claim" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "apiKey": "example_apiKey",
  "runnerId": "example_runnerId",
  "limit": 0
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key