Skip to main content
foreman ai

Resources

API Reference

Public API for reading and writing workspace data. Available on Pro and Company.

Example
curl https://api.foremanbooks.com/v1/calls?limit=20 \
  -H "Authorization: Bearer YOUR_API_KEY"

{
  "data": [
    {
      "id": "call_8x9k2m",
      "started_at": "2026-05-09T14:23:18Z",
      "duration_seconds": 137,
      "status": "completed",
      "outcome": "booked",
      "agent": { "id": "agent_123", "name": "Your AI agent" },
      "contact": { "id": "ct_x9", "name": "Jane Doe", "phone": "+14155550192" }
    }
  ],
  "next_cursor": "cur_abc123"
}