TRIPPYCOIN (TC) $0.0042 ↑2.3% Vol: 1.2M MCap: $2.0M Live · updates every 5s
AP Agent
Code intelligence · Repository analysis · Diff generation
Live Demo
Demo: 3 / 3 free runs
A
APxAI
Welcome to the live demo. I'm running the AP Agent — I can analyze code, generate diffs, plan refactors, and help debug. Try a preset below or describe your task.🧪 Heads up — this chat returns canned example responses so you can feel the flow without a key. The live API is in the Run & Stream tabs above.
Refactor auth middleware Review this function for bugs Generate TypeScript types for this schema My Railway deploy is failing, help me debug Analyze my repo structure
cURL Node.js Python Go
POST /api/agents/code-review-pro/run
Request
curl -X POST https://api.apxai.co/api/agents/code-review-pro/run \
  -H "Authorization: Bearer apx_demo_key_12345" \
  -H "Content-Type: application/json" \
  -d '{
    "input": "Review this function for security issues",
    "context": { "language": "typescript" }
  }'
Response 200 OK
// Response will appear here after clicking ▶ Run
cURL Node.js Python Go
POST /api/memory
Store Memory — Request
curl -X POST https://api.apxai.co/api/memory \
  -H "Authorization: Bearer apx_demo_key_12345" \
  -H "Content-Type: application/json" \
  -d '{"content": "User prefers TypeScript", "tags": ["prefs"]}'
Response 200 OK
// Response will appear here after clicking ▶ Run
Query Memory — GET /api/memory?query=language+preferences
{
  "results": [
    {
      "id": "mem_xyz",
      "content": "User prefers TypeScript",
      "relevance": 0.94
    }
  ]
}
cURL Node.js Python Go
GET /api/trippycoin/price
Request
curl https://api.apxai.co/api/trippycoin/price \
  -H "Authorization: Bearer apx_demo_key_12345"
Response 200 OK
// Response will appear here after clicking ▶ Run
cURL Node.js Python Go
POST /api/agents/run?stream=true
Request
curl -X POST https://api.apxai.co/api/agents/run \
  -H "Authorization: Bearer apx_demo_key_12345" \
  -H "Accept: text/event-stream" \
  -d '{"input": "Analyze my codebase", "stream": true}'
Streaming Output
// Click ▶ Start Stream to see tokens arrive in real time...
cURL Node.js Python Go
POST /api/webhooks
Register Webhook — Request
curl -X POST https://api.apxai.co/api/webhooks \
  -H "Authorization: Bearer apx_demo_key_12345" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-app.com/webhook",
    "events": ["agent.run.completed"],
    "secret": "whsec_abc123"
  }'
Response 201 Created
// Response will appear here after clicking ▶ Run
Sample Webhook Payload (sent to your endpoint)
POST https://your-app.com/webhook
X-APxAI-Signature: sha256=abc123...

{
  "id": "wh_01HX...",
  "event": "agent.run.completed",
  "created_at": "2026-05-27T14:32:01Z",
  "data": {
    "run_id": "run_abc123",
    "agent": "code-review-pro",
    "status": "completed",
    "tc_cost": 25
  }
}