Spread the buttery goodness programmatically
GET /api/v1/generate
Parameter | Type | Description |
---|---|---|
count | integer | Number of units to generate (1-10) |
mode | string | Generation mode: 'paragraph', 'sentence', or 'word' |
GET /api/v1/generate?count=2&mode=paragraph
{
"text": "Golden butter melts into the fresh croissant...",
"metadata": {
"count": 2,
"mode": "paragraph",
"timestamp": "2024-12-19T06:48:13Z"
}
}
To ensure smooth service for all users, please limit requests to 60 per minute.
Status | Description |
---|---|
400 | Invalid parameters (count out of range or invalid mode) |
500 | Server error |