Integrations & a real API

Connect the tools you already run. When we do not have an integration, the REST API and signed webhooks are on every plan — including Free.

Build your own in an afternoon

Scoped API keys, cursor pagination, HMAC-signed webhooks with retries, and an OpenAPI 3 spec you can generate a client from. Rate limits start at 60 requests a minute on Free and go to 5,000 on Enterprise.

curl https://manageyourproject.net/api/v1/tasks \
  -H "X-Api-Key: myp_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "project_id": 12,
    "title": "Ship the pricing page",
    "due_date": "2026-08-19",
    "assignees": [3, 8],
    "estimated_hours": 6
  }'