MeBot · Developer API
Update your bot’s knowledge from your own systems.
The MeBot KB API lets your CRM, CMS or back office add, edit and delete knowledge entries. There is no republish step — a change is live on the very next reply.
Open your bot editor → get your token
Free with every MeBot — no extra charge for API calls.
Authentication
Every bot has a secret API token, shown in the KB API card of its editor. Send it on every request as the X-Mebot-Token header.
curl https://www.drivebird.com/api/mebot/kb/entries \
-H "X-Mebot-Token: mbk_your_secret_token"
Limits
- • Up to 20 knowledge entries per bot.
- • Up to 2,000 characters per entry description (titles up to 160).
- • 60 requests per minute per client.
Endpoints
GET
/api/mebot/kb/entries
— List entries
Response
{"ok": true, "entries": [{"id": 12, "title": "Opening hours", "description": "Mon–Sat 10am–7pm", "source": "API", "sort_order": 3, "updated_at": "2026-07-20 12:40:00"}]}
POST
/api/mebot/kb/entries
— Create an entry
Request body
{"title": "Price list", "description": "Consultation ₹500. Laser from ₹2,000."}
Response
{"ok": true, "entry": {"id": 13, "title": "Price list", "source": "API", …}}
PUT
/api/mebot/kb/entries/{id}
— Update an entry
Request body
{"description": "Consultation ₹600. Laser from ₹2,000."}
Response
{"ok": true, "entry": {"id": 13, …}}
DELETE
/api/mebot/kb/entries/{id}
— Delete an entry
Response
{"ok": true}
Errors
Failures return {"ok": false, "error": "…"} with the matching status code.
| Status | When |
|---|---|
| 401 | Missing or invalid X-Mebot-Token header. |
| 404 | The entry id does not belong to your bot. |
| 422 | Validation failed, or the 20-entry limit is reached. |
| 429 | Rate limit exceeded (60 requests per minute). |
More free DriveBird tools
While your bot answers customers, these run free for everyone.