Floop rest api
Use when integrating directly with the Floop REST API, calling Floop HTTP endpoints, proposing tasks without auth, creating tasks with Bearer API keys, rotating keys, handling API errors, or building server-side Floop clients.From its SKILL.md
npx -y skills add peak6-labs/floop-skills --skill floop-rest-apiAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 460 tokens by cl100k_base, as published. Nobody here has run it
Floop REST API
Overview
Use this skill for direct HTTP integrations with Floop. Prefer MCP for interactive agents; use REST for backend services, custom clients, webhooks, dashboards, and automation that needs explicit HTTP control.
Basics
- Base URL:
https://api.floop.ing/v1 - Docs:
https://floop.ing/api - OpenAPI:
https://floop.ing/v1/openapi.json - Auth:
Authorization: Bearer fl_live_... - Rate limit: 60 requests per minute per API key.
- Task creation limit: 5 tasks per hour per requester.
No-Key Task Proposal
When the human has not provided an API key:
- Call
POST /v1/tasks/proposewith a full task object and optionalrequesterEmail. - Send
data.humanClaimUrlto the human. - Poll
GET /v1/agents/claim/:tokenuntil the claim returns an API key, or branch immediately if the propose response already returnedstatus: postedandapiKey.
Do not use OAuth. Floop does not support OAuth 2.0 yet.
Authenticated Task Creation
When a Bearer key is available:
- Check payment readiness for paid tasks.
- Create tasks with
POST /v1/tasks. - Include
Idempotency-Keyon task creation and safe retries. - Poll
GET /v1/tasks/:idor register webhooks for lifecycle updates. - Approve proof with
POST /v1/tasks/:id/approveonly after reviewing proof.
HTTP Client Rules
- Parse success envelopes from
data. - Parse errors from
error.codeanderror.message. - Respect
Retry-Afteron429. - Watch
X-Floop-Key-Expiring; callPOST /v1/operators/me/keys/rotate-selfbefore expiry and store the returned key. - Never log raw API keys, payment method IDs, or private task proof URLs.
Reference
Read rest-reference.md for endpoint groups, request examples, errors, pagination, and key rotation.
What ships with it: 2 files
3.8 KB alongside SKILL.md
agents/
- openai.yaml206 B
references/
- rest-reference.md3.6 KB