logo
Inbox PlacementCreate inbox placement test

Create inbox placement test

Creates a new inbox placement test. Sends emails from your sender mailboxes to seed accounts and monitors where they land (inbox, spam, promotions, etc.). Optionally specify mailboxTypes to control which seed account categories are used (defaults to all 4 types, 5 receivers per type). Optionally provide customSubject and customBody together for custom email copy, otherwise a random template is used. Max 500 sender mailboxes per test. Subject to monthly FUP limits based on subscription.

curl -X POST "https://api.sendkit.ai/v1/inbox-placement" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d '{
  "name": "Weekly Deliverability Check",
  "mailboxIds": [
    "664a1b2c3d4e5f6a7b8c9d03",
    "664a1b2c3d4e5f6a7b8c9d04"
  ],
  "mailboxTypes": [
    "personal_gmail",
    "business_outlook"
  ],
  "customSubject": "Quick question about your team",
  "customBody": "Hi there, I wanted to reach out about..."
}'
{
  "success": true,
  "data": {
    "id": "664a1b2c3d4e5f6a7b8c9d42",
    "testCode": "IPT-1717200000000-A1B2C3D",
    "status": "pending",
    "testName": "Weekly Deliverability Check",
    "receiverMailboxes": [
      {
        "email": "seed1@gmail.com",
        "mailboxType": "personal_gmail"
      },
      {
        "email": "seed2@outlook.com",
        "mailboxType": "personal_outlook"
      }
    ]
  }
}
POST
/v1/inbox-placement
POST
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
Content-Typestring
Required

The media type of the request body

Options: application/json
namestring

Test name (optional, defaults to "Test date")

mailboxIdsarray
Required

Sender mailbox IDs to test

mailboxTypesarray

Receiver mailbox types to test against (defaults to all 4 types). Allowed values: - personal_gmail — Personal Gmail accounts - personal_outlook — Personal Outlook/Hotmail accounts - business_gmail — Google Workspace (business) accounts - business_outlook — Microsoft 365 (business) accounts

customSubjectstring

Custom email subject (must provide customBody too)

customBodystring

Custom email body (must provide customSubject too)

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

Body

application/json
namestring

Test name (optional, defaults to "Test date")

mailboxIdsarray
Required

Sender mailbox IDs to test

mailboxTypesarray

Receiver mailbox types to test against (defaults to all 4 types). Allowed values:

  • personal_gmail — Personal Gmail accounts
  • personal_outlook — Personal Outlook/Hotmail accounts
  • business_gmail — Google Workspace (business) accounts
  • business_outlook — Microsoft 365 (business) accounts
customSubjectstring

Custom email subject (must provide customBody too)

customBodystring

Custom email body (must provide customSubject too)

Responses