# GET /api/v1/migrations

> List the account's migration requests

- Group: migrations
- Tier: R
- Required scope: read:services
- Docs: https://api.inleed.com/reference/migrations/list-migrations

## Description

Returns `{data:[{id, status, website_count, email_account_count, domain_count, …}], total}`. To open a new request use `request_migration`; for one request in full use `GET /migrations/{id}`.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/v1/migrations" \
  -H "Authorization: Bearer inl_live_…"
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- POST /api/v1/migrations — https://api.inleed.com/reference/migrations/request-migration
- GET /api/v1/migrations/{migration} — https://api.inleed.com/reference/migrations/get-migration
- POST /api/v1/migrations/{migration}/actions/cancel — https://api.inleed.com/reference/migrations/cancel-migration

