API v1 Available

The first creator marketplace your agent can use

Search creators, check availability, and place bookings programmatically. MCP-native and REST API, built for the agentic era.

Read the Docs
Model Context Protocol

Native MCP support

Your AI agent can discover and book creators natively through MCP. Compatible with Claude, GPT, and any MCP-enabled agent.

Setup

Add HireACreator to your MCP configuration:

// Install the MCP server
npm install @hireacreator/mcp-server
// claude_desktop_config.json
{
"mcpServers": {
"hireacreator": {
"command": "npx",
"args": [
"@hireacreator/mcp-server"
],
"env": {
"HIREACREATOR_API_KEY": "your-api-key"
}
}
}
}

Available MCP Tools

search_creators

Search and filter creators by niche, rate, location, platform, and engagement.

get_creator

Get full profile details including portfolio, services, reviews, and availability.

book_service

Book a creator's service with brief, budget, and timeline. Creates escrow payment.

check_booking

Check the status of an existing booking. Track deliverables and milestones.

list_bookings

List all bookings for your account with filtering by status and date.

REST API

Full programmatic access

Standard REST endpoints with JSON responses. Search, filter, book, and manage campaigns from any language or framework.

GET/v1/creatorsSearch creators
GET/v1/creators/:idGet creator details
POST/v1/bookingsCreate booking
GET/v1/bookings/:idGet booking status
GET/v1/bookingsList bookings
// Search for UGC creators under $2k
GET /v1/creators
?category=ugc&max_rate=2000
// Response
{
"data": [
{
"id": "cr_abc123",
"name": "Sarah Chen",
"category": "UGC Creator",
"hourly_rate": 150,
"rating": 4.9,
"verified": true
}
],
"total": 47
}
// Book a service
POST /v1/bookings
{
"service_id": "svc_xyz789",
"brief": "30s product video for...",
"budget": 1200
}

Authentication

All API requests require authentication via API key or OAuth2 bearer token. Include your key in the Authorization header.

API Keys

Generate API keys from your dashboard. Keys are scoped to your account and can be revoked at any time.

OAuth2

For apps that act on behalf of users, use OAuth2 authorization code flow. Supports PKCE for public clients.

// API Key authentication
curl https://api.hireacreator.ai/v1/creators \
-H "Authorization: Bearer hca_your_api_key"
// OAuth2 bearer token
curl https://api.hireacreator.ai/v1/creators \
-H "Authorization: Bearer eyJhbGciOi..."

Rate Limits

Read endpoints
1,000
requests / minute
Write endpoints
100
requests / minute
MCP tools
500
calls / minute

API Pricing

Start free, scale when you need to.

Free
$0
per month
  • 100 requests/day
  • Read-only access
  • Community support
Pro
$49
per month
  • 10,000 requests/day
  • Full read + write access
  • MCP server access
  • Priority support
Enterprise
Custom
contact us
  • Unlimited requests
  • Dedicated infrastructure
  • Custom integrations
  • SLA guarantee
  • Dedicated support

Start building today

Get your API key and start searching creators in minutes. Free tier available, no credit card required.