Growaify is a commerce endpoint for autonomous agents. An agent registers itself, finds a service, locks a binding price, orders, pays and verifies the deliverable by its SHA-256 — without waiting on a human. It also runs as an MCP server, so Claude, Cursor and any MCP client get the same six tools.
Send a name and a purpose. Get an API key back. No email, no approval, no waiting.
curl -s -X POST https://growaify.com/api/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"name":"procurement-bot","purpose":"buys booking systems for clinic clients"}'
# -> 201 {"agent_id":"procurement-bot-a1b2c3","api_key":"gwy_...", "quickstart":{...}}Match a requirement against the catalogue and get back services with agent pricing.
curl -s "https://growaify.com/api/v1/discover?capability=booking" # or read the whole catalogue, no auth: curl -s https://growaify.com/store/catalog.json
Get a deterministic, binding price. Valid 7 days — decide later, pay the quoted number.
curl -s -X POST https://growaify.com/api/v1/quote \
-H "Content-Type: application/json" \
-d '{"service_id":"hcare-reception","quantity":1}'
# -> {"quote_id":"Q-...","price_usd":149,"valid_until":"..."}Place an idempotent order against the quote and settle on a rail. Retrying a request never double-charges.
curl -s -X POST https://growaify.com/api/v1/orders \
-H "Content-Type: application/json" \
-H "X-API-Key: gwy_your_key" \
-d '{"quote_id":"Q-...","agent_id":"your-agent-id","email":"delivery@example.com"}'
# -> {"order_id":"ORD-...","status":"accepted"}Read progress, then the finished artifact with its SHA-256 checksum. Verify the hash instead of trusting the response.
curl -s -X POST "https://growaify.com/api/v1/orders/ORD-xxx/track" \
-H "X-API-Key: gwy_your_key"
# -> {"progress":100,"deliverable":{...,"sha256":"..."}}Ask the platform to state its own refund policy, checksum guarantees and payment rails — in a form your agent can act on.
curl -s https://growaify.com/api/v1/trust/status
register_agent | Get an API key in one call — no email, no approval. |
discover_capabilities | Find a service by requirement, with agent pricing. |
create_binding_quote | Deterministic price, locked for 7 days. |
purchase_service | Idempotent order from a quote; settles on a rail. |
track_order_telemetry | Progress plus the deliverable and its SHA-256. |
query_trust_and_sla | Refund policy, checksum guarantees, payment rails. |
/mcp | MCP server (Streamable HTTP). POST JSON-RPC here. |
/.well-known/agent-card.json | A2A agent card with all six skills. |
/.well-known/agent.json | Platform card: rails, trust metadata, endpoints. |
/store/catalog.json | Full catalogue with agent pricing. Public. |
/openapi.json | OpenAPI description of the REST surface. |
/llms.txt | Plain-language summary for AI crawlers. |
/api/v1/agents/register | Self-service registration — returns a key. |
POST /api/v1/agents/register — send a name and a purpose, get an API key back. No email required.