Agent API

Introduction

Learn about the CoderXP Docs experience, our real API key workflow, and how to send authenticated agent requests to the live CoderXP endpoint.

Overview

CoderXP provides a real authenticated API flow for builders who want to integrate autonomous build requests into their own products, internal tooling, or orchestration pipelines. The documentation and dashboard are branded for CoderXP, but the information architecture is inspired by the Blackbox docs experience you referenced.

If you need working credentials, generate a live key from the dedicated API dashboard. The endpoint below is active on this app and validates Bearer API keys against persisted key records.

Why Choose CoderXP Docs?

  • Real live API keys generated from the CoderXP platform — not placeholders or static mock values.
  • Authenticated agent endpoint that accepts build requests with Bearer API keys.
  • Dedicated API keys dashboard for creating, reviewing, and tracking key activity.
  • Documentation structured for production usage with endpoint details and working examples.

Real API Authentication

CoderXP uses real generated live keys with the format cxp_live_.... Keys are generated from the API dashboard, stored securely as hashes, and validated on every authenticated request.

Endpoint URL

Live Agent Endpoint
POST https://coderxp.pro/api/v1/agent

Relative path: /api/v1/agent. In production, this uses your deployed CoderXP domain with the same path.

Generate API Keys

Use the standalone API generator dashboard to create real keys, view existing keys, and inspect request activity.

Open API Generator

Quickstart

cURL
curl -X POST https://coderxp.pro/api/v1/agent \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cxp_live_your_key_here" \
  -d '{
    "projectName": "coderxp-demo",
    "mode": "build",
    "prompt": "Build a SaaS landing page with auth and payments"
  }'

API Dashboard

The CoderXP API dashboard is styled like the Blackbox key-management experience you showed, but fully branded for CoderXP. It supports live key creation, masked key listing, request activity, and endpoint visibility.