CoolFace
Apppublic

ColinBalin/company-enrichment

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
App README

Company Enrichment API

Resolve a domain or company name into structured company data (industry, size, social).

Try it above with the example input stripe.com, then read on for production usage.

What this is

A free interactive demo of one endpoint from the GoCreative AI x402 API — a pay-per-call API platform for AI agents (Claude Code, Cursor, custom agents).

  • Endpoint: GET /v1/enrich/company/{input}
  • Price (production): $0.005 per call
  • Auth: x402 (USDC on Base) — no API keys, no signup
  • Free tier here: 5 calls/day per IP via /demo

Get unlimited access

Fund a Base wallet with $1 USDC and call this endpoint (plus 144 others) without limits:

Use it from your agent

python
import httpx
r = httpx.get("https://api.gocreativeai.com/v1/enrich/company/stripe.com")
print(r.json())

Or natively via MCP — add to ~/.claude/mcp_servers.json:

json
{
  "mcpServers": {
    "gocreative": {
      "url": "https://api.gocreativeai.com/mcp",
      "headers": {"X-Wallet-Key": "0x_YOUR_BASE_WALLET_KEY"}
    }
  }
}

Built by GoCreative AI. Pay-per-call APIs for AI agents.