API

API explorer

The complete v1 surface — 46 endpoints — with the scope each one requires and the SDK call that wraps it. The prose reference, with request and response bodies, is at nodedata.dev/docs/api-reference.

List your bounties

Every bounty this account has posted, newest first, with its fill rate and escrow position. Filter by status with ?status=open.

Scopebounties:readSDKnd.bounties.list({ status: "open" })

Request

cURL
curl "https://www.nodedata.ai/api/v1/bounties" \
-H "Authorization: Bearer $NODE_DATA_API_KEY"

Response

200 · /bounties
{
"object": "list",
"data": [
{
"id": "cms9543fk0003or37pjl1ro8v",
"title": "Dishwashers being loaded, real kitchens",
"clips_wanted": 500,
"clips_accepted": 128,
"clips_remaining": 372,
"price_per_clip_cents": 250,
"family_share_cents": 100,
"status": "open",
"kid_review_state": "approved"
}
],
"has_more": false
}
Try it in the playground →