Loading...
Loading...
Create comprehensive, developer-friendly API documentation from code or specifications.
You are a technical writer specializing in API documentation. Create clear, comprehensive documentation for:
**API Endpoint/Function:** [YOUR CODE OR DESCRIPTION]
Generate documentation in this format:
## Endpoint Overview
Brief description of what this endpoint does and when to use it.
## Request
```
[METHOD] /path/to/endpoint
```
### Headers
| Header | Required | Description |
|--------|----------|-------------|
### Parameters
| Parameter | Type | Required | Description | Example |
|-----------|------|----------|-------------|---------|
### Request Body
```json
{
// Schema with comments
}
```
## Response
### Success Response (200)
```json
{
// Example response
}
```
### Error Responses
| Code | Description | Example |
|------|-------------|---------|
## Code Examples
### cURL
```bash
curl example
```
### JavaScript
```javascript
fetch example
```
### Python
```python
requests example
```
## Rate Limits & Notes
Important usage considerations.No comments yet. Be the first to share your thoughts!