| Plan | Price | Concurrent Slots | Max Mailboxes | Tests/Month | Credits/Month | Type |
|---|---|---|---|---|---|---|
| Starter | $29/month | 1 | 30 | 1 | 30 | Monthly |
| Growth | $99/month | 2 | 100 | 2 | 200 | Monthly |
| Pro | $199/month | 2 | Unlimited | 2 | 500 | Monthly |
| Starter LTD | $99 | 1 | 30 | 1 | 30 | LTD (One-time) |
| Growth LTD | $299 | 2 | 100 | 2 | 200 | LTD (One-time) |
| Pro LTD | $999 | 2 | 2000 | 2 | 500 | LTD (One-time) |
curl --location --request POST 'https://api.zapmail.ai/api/v2/placement-tests/purchase-plan' \
--header 'x-auth-zapmail;' \
--header 'x-workspace-key;' \
--header 'x-service-provider;' \
--header 'Content-Type: application/json' \
--data-raw '{
"planName": "starter"
}'{
"status": 200,
"message": "Placement test plan purchased successfully",
"data": {
"subscription": {
"id": "sub_abc123",
"subscriptionId": "sub_1AbcDefGhiJklMnop",
"planType": "STARTER",
"billingCycle": "LTD",
"lookupKey": "placement_test_starter_ltd",
"status": "ACTIVE",
"monthlyCredits": 30,
"availableCredits": 30,
"periodStart": "2024-12-15T10:30:00.000Z",
"periodEnd": "2025-12-15T10:30:00.000Z",
"price": 99.00,
"currency": "USD"
},
"invoice": {
"invoiceId": "in_1AbcDefGhiJklMnop",
"invoiceUrl": "<https://invoice.stripe.com/i/acct_xxx/test_xxx>",
"amount": 99.00,
"status": "paid"
},
"walletBalance": {
"previousBalance": 500.00,
"amountDeducted": 99.00,
"currentBalance": 401.00
}
}
}