PromptConduit REST API Reference
The PromptConduit Platform exposes a single ingest endpoint for raw AI tool events. All event transformation happens server-side via adapters, so the API is intentionally minimal.
Base URL
https://promptconduit.dev/api/v1
Authentication
All requests require an API key in the Authorization header:
Authorization: Bearer pck_your_api_key_here
POST /v1/events/raw
Ingest a raw event envelope from any supported AI coding tool. The envelope wraps the original tool event plus metadata (tool name, version, git context, capture timestamp).
Request body
{
"tool": "claude-code",
"tool_version": "1.4.2",
"captured_at": "2026-05-22T18:30:00Z",
"git": { "branch": "main", "commit": "abc123", "remote": "..." },
"event": { /* raw event from the tool */ }
}
Response
Returns 202 Accepted with the assigned event ID on success. Errors follow RFC 7807 Problem Details format.
Rate limits
- Starter (free): 1,000 events/hour
- Pro: 50,000 events/hour
- Team: 250,000 events/hour
Other Documentation
- Installation — Install the PromptConduit CLI via Homebrew, curl, or from source. Available for macOS, Linux, and Windows.
- Local Skills — Generate reusable Claude Code skills from your local transcripts without a platform account. Free forever.
- Supported Tools — PromptConduit supports Claude Code, Cursor, Gemini CLI, Codex, and Copilot for real-time capture and skill generation.
- Configuration — Configure the PromptConduit CLI: API keys, environments, debug mode, and environment variables.
- CLI Reference — Full CLI reference for PromptConduit. Commands for install, sync, skills generation, config, and more.