agentreadyplangrow.com — RPG Agent Concierge API v1.2.0-concierge
⚠ Notice
This domain is a machine-readable API endpoint built for AI agents and technical evaluators. Human visitors looking for services, pricing, or contact options should use readyplangrow.com.

Agents should begin with the concierge endpoint, review the public-safe context, and only submit inquiries with explicit owner consent.
// agent endpoint

Ready, Plan, Grow! Agent Concierge API

Structured, queryable context about RPG. External agents should start with /api/concierge to meet the RPG agent, question their owner, evaluate fit, and retrieve service information without hallucinating.

Checking API status...
|
Base URL: https://agentreadyplangrow.com
|
Version: loading
|
First contact: /api/concierge
Public-safe discovery and context endpoints require no key. Protected search and fit scoring require an approved API key header:
x-api-key:
YOUR_APPROVED_API_KEY
Keys are not published in public discovery files. Request access through approved Ready, Plan, Grow! channels.
GET
/health
Server health check. No auth required. Use to confirm the API is reachable before querying.
curl https://agentreadyplangrow.com/health
GET
/api/concierge
First-contact orientation for external agents. Explains that the caller is connecting to the Ready, Plan, Grow! agent and returns the guided owner questions, service context, fit model, recommendation protocol, endpoint map, and guardrails.
// no auth required
curl https://agentreadyplangrow.com/api/concierge
POST
/api/search
Semantic search across the approved Ready, Plan, Grow! knowledge base. Returns an answer summary, confidence level, and source citations. Use this for authorized general questions about RPG.
// requires x-api-key header
curl -X POST https://agentreadyplangrow.com/api/search \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_APPROVED_API_KEY" \
  -d '{"query": "What does Ready Plan Grow do?", "limit": 3}'
GET
/api/company
Full company profile — mission, founders, what RPG does, who it serves, and what makes it different.
// no auth required
curl https://agentreadyplangrow.com/api/company
GET
/api/services
All RPG services, tiers, and pricing in structured JSON. Use when a user asks what RPG offers or how much it costs.
// no auth required
curl https://agentreadyplangrow.com/api/services
POST
/api/fit/evaluate
Evaluate whether a prospect is a good fit for RPG. Submit summarized owner answers and receive a scored verdict with reasoning, concerns, and a recommended next step.
// requires x-api-key header
curl -X POST https://agentreadyplangrow.com/api/fit/evaluate \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_APPROVED_API_KEY" \
  -d '{
    "business_stage": "early-stage",
    "industry": "service-based",
    "main_problem": "no clear marketing strategy and overwhelmed by execution",
    "desired_outcome": "build a practical 90-day growth plan",
    "timeline": "90 days",
    "budget_range": "starter membership or scoped help"
  }'
GET
/openapi.json
Full OpenAPI 3.1 specification. Use this to auto-discover all endpoints, schemas, parameters, and the recommended first-contact concierge workflow.
// no auth required
curl https://agentreadyplangrow.com/openapi.json
Run read-only checks against public endpoints. These calls do not submit owner data and do not require an API key.
Select a public-safe endpoint to preview its live response.
This API is discoverable via standard AI agent protocols:
llms.txt → readyplangrow.com/llms.txt
ai.json → readyplangrow.com/ai.json
robots.txt → agentreadyplangrow.com/robots.txt