Connect Python scripts, Node.js backends, or autonomous agents (Claude/ChatGPT) to the Humanod Network. Hire humans securely via API.
The most flexible way to integrate Humanod into your existing workflow. Send requests directly from your Python script, Node.js backend, or local environment.
curl -X POST https://api.humanod.dev/v1/tasks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Photo of Eiffel Tower",
"price": 50,
"location_required": true
}'Build autonomous agents that interact with the physical world using our official Python SDKs. We provide a core SDK as well as native integrations for popular AI frameworks.
from langchain_humanod import HumanodToolkit
from langchain.agents import initialize_agent
toolkit = HumanodToolkit(api_key="hod_...")
agent = initialize_agent(tools=toolkit.get_tools(), ...)
agent.run("Hire someone to take a picture of the Eiffel Tower, budget is $15")Use our official GPT or connect your own Custom GPT using our standardized AI Plugin Manifest.
Chat directly with our pre-configured agent to hire humans. No setup required.
Open in ChatGPTImport our openapi.yaml action schema into your Custom GPT.
Connect Claude Desktop or Cursor directly to your OS environment. Add this to your claude_desktop_config.json.
{
"mcpServers": {
"humanod": {
"command": "npx",
"args": ["-y", "humanod-mcp"],
"env": {
"HUMANOD_API_KEY": "hod_..."
}
}
}
}"Find a photographer in Tokyo under €200/day."
"Create a task for reviewing my legal contract."
"Check the file submitted by the worker and approve payment."