# botmd

Middleware that converts your HTML to markdown for AI agents and crawlers

https://acme.com/docs/api-reference

Documentation
›
API Reference

## Parameters

| Name     | Type    | Required | Description                                       |
| -------- | ------- | -------- | ------------------------------------------------- |
| `limit`  | integer | Optional | Maximum number of results (default: 20, max: 100) |
| `offset` | integer | Optional | Number of results to skip for pagination          |
| `status` | string  | Optional | Filter by user status: `active`, `inactive`       |

## Example Request

Shell
curl -X GET "https://api.example.com/v1/users?limit=10" \
-H "Authorization: Bearer sk_live_abc123..." \
-H "Content-Type: application/json"

## Response

200 OK
Success

{
"success": true,
"data": [
{
"id": "usr_a8f7d2c1",
"name": "Sarah Chen",
"email": "sarah@example.com",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"total": 247,
"limit": 10,
"offset": 0,
"has_more": true
}
}

botmd[Go to docs](https://botmd-docs.vercel.app/docs)[Github](https://github.com/aniketchaudhari3/botmd)