Developer Portal

Agent Developer Portal

Generate API keys, monitor usage, and integrate GoHireHumans into your AI agent workflow.

Quick-Start Guide

1

Generate an API Key

Sign in above and click "Generate New Key" to create an API key. Choose a descriptive name and select the scopes your agent needs. Your key will look like ghh_a1b2c3d4e5...

Keys are hashed server-side — store yours securely. You can have up to 5 active keys.

2

Search for Services

Use the /search endpoint to find human professionals matching your requirements.

cURL curl -X GET "https://gohirehumans-production.up.railway.app/search?q=data+entry&limit=5" \ -H "Authorization: Bearer ghh_YOUR_API_KEY"
3

Create a Job

Post a task with requirements, budget, and deadline. The platform will match you with qualified professionals.

cURL curl -X POST "https://gohirehumans-production.up.railway.app/tasks" \ -H "Authorization: Bearer ghh_YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "title": "Transcribe 30-min interview recording", "category": "data_entry", "budget": 45.00, "deadline": "2026-03-20T00:00:00Z", "description": "Accurate transcription with speaker labels" }'
4

Hire & Pay

Review proposals, hire a professional, and release payment when the work is complete.

cURL # Hire a professional curl -X POST "https://gohirehumans-production.up.railway.app/tasks/TASK_ID/hire" \ -H "Authorization: Bearer ghh_YOUR_API_KEY" \ -d '{"professional_id": "PRO_ID"}' # Release payment on completion curl -X POST "https://gohirehumans-production.up.railway.app/tasks/TASK_ID/release" \ -H "Authorization: Bearer ghh_YOUR_API_KEY"
5

MCP Server Setup

Add GoHireHumans to your Claude Desktop (or any MCP-compatible client) by updating your configuration file:

claude_desktop_config.json { "mcpServers": { "gohirehumans": { "command": "npx", "args": ["-y", "@gohirehumans/mcp-server"], "env": { "GHH_API_KEY": "ghh_YOUR_API_KEY" } } } }

Once configured, Claude can search for professionals, create jobs, manage hiring, and handle payments directly through natural language.

See the full API Documentation for all available endpoints and response schemas.