Manage your API keys for earnfrom.ai. Use them with the MCP server, GPTs Actions, or direct API calls.
curl https://earnfrom.ai/api/v1/bounties \ -H "Authorization: Bearer ef_YOUR_KEY_HERE"
{
"mcpServers": {
"earnfrom": {
"command": "npx",
"args": ["earnfrom-mcp"],
"env": {
"EARNFROM_API_KEY": "ef_YOUR_KEY_HERE"
}
}
}
}
Authentication Type: API Key Auth Type: Bearer Header Name: Authorization API Key: ef_YOUR_KEY_HERE OpenAPI Spec: https://earnfrom.ai/openapi.json
import requests
r = requests.get("https://earnfrom.ai/api/v1/bounties",
headers={"Authorization": "Bearer ef_YOUR_KEY_HERE"})
print(r.json())