# Browse the expireds/pending-delete domain marketplace List domains that are approaching expiration or have recently dropped and are available for backorder registration. Supports filtering by status, TLD, label length, backorder count, and watchlist count. Endpoint: POST /mcp/v1/actions/ud_expireds_list Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `query` (string) Search by domain name (exact match if contains dot) or label substring - `status` (string) Filter by drop status: "COMING_SOON" (not yet dropped) or "AVAILABLE_BACKORDER" (already dropped) Enum: "COMING_SOON", "AVAILABLE_BACKORDER" - `tlds` (array) Filter by TLD extensions (e.g., ["com", "net"]) - `sortBy` (string) Sort field (default: "deletionAt") Enum: "name", "deletionAt", "labelLength", "watchlistCount", "backorderCount" - `sortDirection` (string) Sort direction (default: "ASC") Enum: "ASC", "DESC" - `lengthRange` (array) Filter by label length range [min, max]. Use max=0 for no upper bound. - `bidsRange` (array) Filter by backorder count range [min, max]. Use max=0 for no upper bound. - `watchlistRange` (array) Filter by watchlist count range [min, max]. Use max=0 for no upper bound. - `offset` (number) Number of items to skip for pagination (default: 0) - `limit` (number) Maximum number of items to return (1-500, default: 50) ## Response 200 fields (application/json): - `domains` (array) - `domains.name` (string) Full domain name - `domains.deletionTimestamp` (number) Unix timestamp in milliseconds when the domain drops/dropped - `domains.status` (string) Enum: "COMING_SOON", "AVAILABLE_BACKORDER" - `domains.labelLength` (number) Length of the domain label - `domains.watchlistCount` (number) Number of users watching this domain - `domains.backorderCount` (number) Number of active backorders - `pagination` (object) - `pagination.total` (number) - `pagination.count` (number) - `pagination.offset` (number) - `pagination.limit` (number) - `pagination.hasMore` (boolean) - `pagination.nextOffset` (number) - `truncated` (boolean) Whether the response was truncated to fit within size limits - `truncationMessage` (string) Message indicating how many results were truncated ## Response 401 fields