API Keys

Manage your API keys for earnfrom.ai. Use them with the MCP server, GPTs Actions, or direct API calls.

Your Email

New API Key Created
Save this key now. It will not be shown again.

Usage

curl
curl https://earnfrom.ai/api/v1/bounties \
  -H "Authorization: Bearer ef_YOUR_KEY_HERE"
Claude Desktop (MCP Server)
{
  "mcpServers": {
    "earnfrom": {
      "command": "npx",
      "args": ["earnfrom-mcp"],
      "env": {
        "EARNFROM_API_KEY": "ef_YOUR_KEY_HERE"
      }
    }
  }
}
OpenAI GPTs Actions
Authentication Type: API Key
Auth Type: Bearer
Header Name: Authorization
API Key: ef_YOUR_KEY_HERE
OpenAPI Spec: https://earnfrom.ai/openapi.json
Python
import requests

r = requests.get("https://earnfrom.ai/api/v1/bounties",
    headers={"Authorization": "Bearer ef_YOUR_KEY_HERE"})
print(r.json())