InboxKit
  1. Prewarm
InboxKit
  • Introduction
  • Order
    • Place Order
      POST
  • Webhook
    • Status Change Webhook
      POST
  • Account
    • Get account details
      GET
  • Workspaces
    • List workspaces
      GET
    • Get workspace details
      GET
    • Create workspace
      POST
    • Update workspace
      PUT
    • Delete workspace
      DELETE
    • Update workspace webhook
      POST
  • Domains
    • Search available domains
      POST
    • Check if domain is banned from registration
      GET
    • Check domain availability
      GET
    • Register domains
      POST
    • List domains
      POST
    • List assignable domains
      GET
    • Set DMARC policy
      POST
    • Remove DMARC policy
      DELETE
    • Remove domains
      POST
    • Set domain forwarding
      POST
    • Set email forwarding
      POST
    • Remove email forwarding
      DELETE
    • Set catch-all email
      POST
    • Remove catch-all email
      DELETE
    • Get nameservers for domain connection
      POST
    • Check nameservers propagation
      POST
  • Mailboxes
    • List mailboxes
    • Show mailbox credentials
    • Get mailbox details
    • Buy mailboxes
    • Check mailbox status
    • Cancel mailboxes
    • Update mailbox
    • Update mailbox profile picture
    • Generate TOTP
    • Change username
    • Change password
    • Check mailbox availability
  • DNS
    • Get DNS records
    • Add DNS records
    • Update DNS records
    • Delete DNS records
  • Sequencers
    • Export mailboxes status
    • List sequencer platforms
    • List sequencers
    • Export mailboxes
    • Add sequencer
    • Update sequencer
    • Delete sequencers
  • Billing
    • Get pricing plans
    • Get subscription details
    • Change subscription plan
    • Cancel subscription
    • Get wallet details
    • Add credits to wallet
    • Update auto top-up settings
    • Get billing portal link
  • Consent Request
    • Initiate Consent Request
    • Get Consent Request Status
    • List Consent Requests
  • Tags
    • Assign tags to domains or mailboxes
    • Get all tags
    • Create a new tag
    • Delete a tag
  • Prewarm
    • Search Domains
      POST
    • Search Mailboxes
      POST
    • Buy Prewarmed Mailboxes
      POST
    • Check Order Status
      GET
  1. Prewarm

Search Mailboxes

POST
https://api.inboxkit.com/v1/api/prewarm/search-mailboxes
Maintainer:Not configured
Search from all available prewarm mailboxes

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.inboxkit.com/v1/api/prewarm/search-mailboxes' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "domain_id": "string",
    "domain_ids": [
        "string"
    ],
    "first_name": "string",
    "last_name": "string",
    "full_name": "string",
    "gender": "male",
    "domain": "string",
    "domain_age_min": 0,
    "domain_age_max": 0,
    "platform": "GOOGLE",
    "page": 1,
    "limit": 10
}'
Response Response Example
{
    "error": false,
    "message": "Mailboxes retrieved successfully",
    "data": {
        "mailboxes": [
            {
                "_id": "507f1f77bcf86cd799439012",
                "email": "[email protected]",
                "username": "john.smith",
                "first_name": "John",
                "last_name": "Smith",
                "full_name": "John Smith",
                "gender": "male",
                "profile_picture": "https://...",
                "platform": "GOOGLE",
                "status": "active",
                "is_admin": false,
                "domain_id": "507f1f77bcf86cd799439011",
                "domain_name": "example.com",
                "domain_age_days": 260,
                "createdAt": "2024-02-01T10:30:00.000Z",
                "updatedAt": "2024-02-01T10:30:00.000Z"
            }
        ],
        "pagination": {
            "page": 1,
            "limit": 10,
            "total": 120,
            "pages": 12
        }
    }
}
Modified at 2025-10-06 08:50:23
Previous
Search Domains
Next
Buy Prewarmed Mailboxes
Built with