InboxKit
  1. Tests
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
    • Remove domains
      POST
    • Set domain forwarding
      POST
    • Set catch-all email
      POST
    • Remove catch-all email
      DELETE
    • Get nameservers for domain connection
      POST
    • Check nameservers propagation
      POST
    • Check Workspace Availability
      POST
    • Set DMARC Configuration
      POST
    • Remove DMARC Configuration
      DELETE
  • 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
  • Client ID Requests
    • Initiate Client ID Request
    • Get Client ID Request Status
    • List Client ID Requests
  • Mailbox Forwarding
    • Setup Email Forwarding
    • Update Email Forwarding
    • Remove Email Forwarding
    • List Forwarding Jobs
  • 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
    • Search Mailboxes
    • Buy Prewarmed Mailboxes
    • Check Order Status
    • Check Availability
  • Inbox Placement
    • Tests
      • Create Test
        POST
      • List Tests
        GET
      • Get Test Results
        GET
    • Scheduled Tests
      • List Scheduled Tests
      • Get Scheduled Test
      • Pause Scheduled Test
      • Resume Scheduled Test
      • Delete Scheduled Test
  1. Tests

Get Test Results

GET
https://api.inboxkit.com/v1/api/inbox-placement/tests/{testCode}
Maintainer:Not configured

Request

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

Responses

🟢200Success
application/json
Body

🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.inboxkit.com/v1/api/inbox-placement/tests/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "success": true,
    "test": {
        "id": "64f1a2b3c4d5e6f7g8h9i0j1",
        "test_code": "IPT-ABC123XYZ",
        "test_name": "Weekly Deliverability Check",
        "status": "pending",
        "sender_mailboxes": [
            {
                "email": "[email protected]",
                "platform": "GOOGLE",
                "mailbox_id": "string",
                "profile_picture": "string",
                "full_name": "John Doe"
            }
        ],
        "receiver_mailboxes": [
            {
                "email": "[email protected]",
                "type": "personal_gmail"
            }
        ],
        "created_at": "2019-08-24T14:15:22Z",
        "started_at": "2019-08-24T14:15:22Z",
        "completed_at": "2019-08-24T14:15:22Z",
        "expires_at": "2019-08-24T14:15:22Z",
        "estimated_completion_at": "2019-08-24T14:15:22Z",
        "summary": {
            "totalFound": 0,
            "totalPrimary": 0,
            "totalSpam": 0,
            "totalPromotions": 0,
            "totalOther": 0,
            "totalNotFound": 0,
            "overallScore": 0,
            "byProvider": {
                "property1": {
                    "primary": 0,
                    "spam": 0,
                    "promotions": 0,
                    "other": 0,
                    "not_found": 0,
                    "score": 0
                },
                "property2": {
                    "primary": 0,
                    "spam": 0,
                    "promotions": 0,
                    "other": 0,
                    "not_found": 0,
                    "score": 0
                }
            }
        },
        "results": [
            {
                "receiverEmail": "string",
                "receiverType": "string",
                "senders": [
                    {
                        "senderEmail": "string",
                        "placement": "primary",
                        "detectedAt": "2019-08-24T14:15:22Z",
                        "gmailLabel": "string",
                        "outlookFolder": "string"
                    }
                ]
            }
        ],
        "errors": [
            {
                "message": "string",
                "timestamp": "2019-08-24T14:15:22Z"
            }
        ],
        "emails_sent": 0
    }
}
Modified at 2025-11-20 17:16:35
Previous
List Tests
Next
List Scheduled Tests
Built with