API Documentation

PRD.ai REST API Reference

Authentication

Use API keys for programmatic access to the PRD.ai API. Include your key in the Authorization header.

Authorization: Bearer YOUR_API_KEY
Rate Limits

API requests are rate limited based on your subscription plan.

Free10 req/min
Pro60 req/min
Enterprise300 req/min
Response Format

All responses are JSON. Errors include an error field.

{ "error": "message", "code": "CODE" }
Quick Start
Get started with the PRD.ai API in minutes

1. Get your API Key

Generate an API key from your account settings or the admin panel.

2. Make your first request

Create a new PRD project using the API:

curl -X POST https://api.prd.ai/api/projects \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "My New PRD", "templateId": "uuid-here"}'

3. Explore the API

Check out the full API reference below to see all available endpoints.