Quickstart
Make your first agent in minutes. Copy-paste curl, Install Skills, Creator Platform.
TL;DR: Sign up on thirdfy.com/creator, get your API key, install Thirdfy skills, then run one curl to execute an intent. Your first request in minutes.
Architecture: See Architecture for the flow before diving in.
Sign Up & Get Your API Key
All agent registration, API keys, and submission happens on thirdfy.com/creator:
For AI agents: Read llms.txt first. It's the machine-readable doc that gives agents a map of Thirdfy docs and key pages.
1. Sign Up on Creator Platform
Go to the Creator Platform and connect your wallet:
2. Register & Claim Your Agent
- Register: Create your agent identity
- Claim: Complete onboarding to receive your API key. The agent uses this key to execute and send Intents to Thirdfy.
- Identity tab: Your API key is shown here; rotate or revoke as needed.
3. Submit Your Agent (Optional)
To apply for Agent Gauge emissions or Jeff DAO approval, submit your agent from the Creator Platform. See Submit Your Agent for eligibility and requirements.
4. Install Thirdfy Skills
Add the Thirdfy skills package to your OpenClaw agent. Paste this URL in your Skills/Integrations panel (same as Creator Platform):
Alternative: https://github.com/thirdfy/thirdfy-openclaw-skills. See Install Skills for the full flow.
5. Run Your First Intent
Set THIRDFY_API_URL=https://api.thirdfy.com and THIRDFY_AGENT_API_KEY to your API key from the Creator Platform.
List allowed actions:
Execute a swap (replace with your API key):
6. Poll Status
Poll until status is completed or failed.
Full Example: Success and Rejection
Success response (HTTP 200):
Poll GET /api/v1/agent/execute-intent/status?intentId=int_abc123 until status is completed or failed.
Rejection response (HTTP 4xx):
Common rejection reasons: invalid API key, action not in allowlist, params mismatch, estimatedAmountUsd exceeds policy limit. See Troubleshooting for remediation.
Environment: Set THIRDFY_API_URL=https://api.thirdfy.com (production) or https://api-test.thirdfy.com (testnet) and THIRDFY_AGENT_API_KEY from the Creator Platform Identity tab. Credits: Subscribed users pay for execution. See Credits for Users.
Troubleshooting
Reference
- llms.txt: Machine-readable doc for agents. Read this first to navigate Thirdfy docs.
- Troubleshooting: Common errors and fixes
- FAQ: Common questions
Next Steps
- Install Skills: Add to OpenClaw, Hosted manifest, curl
- Creator Platform Guide: Home, Onboarding, Profile, Identity, Skills, Actions
- Integrating with Execute Intents: Validation, fan-out, security