v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
InboxPlacementBlacklistAndSpamAssassinReport

Get inbox placement blacklist and spamassassin report

Requires one of the following scopes: inbox_placement_reports:read, inbox_placement_reports:all, all:read, all:all

get/api/v2/inbox-placement-reports/{id}

Path parameters

idstring uuid required
Example:019f94cd-aeaf-7742-8e0f-cc5342d5e47b

The ID of the requested item

Response

The requested Inbox Placement Blacklist And SpamAssassin Report

idstring uuid required

Unique identifier for the inbox placement report entry

timestamp_createdstring required

Timestamp when the inbox placement report was created

timestamp_created_datestring required

Date when the inbox placement report was created

organization_idstring uuid required

Organization ID

test_idstring uuid required

Inbox Placement Test ID

domain_blacklist_countnumber nullable

Count of blacklists the domain is listed on

domainstring required

Domain of the inbox placement report

domain_ipstring required

IP address of the domain

domain_ip_blacklist_countnumber nullable

Count of blacklists the domain IP is listed on

spam_assassin_scorenumber required

SpamAssassin score for the email, indicating spam likelihood

Example response

{
  "id": "019f94cd-839d-70e4-a0a0-f2c7571fd856",
  "timestamp_created": "2026-07-24T15:45:24.381Z",
  "timestamp_created_date": "2026-07-24",
  "organization_id": "019f94cd-839d-70e4-a0a0-f2c8073aa8c9",
  "test_id": "019f94cd-839d-70e4-a0a0-f2c9971f523b",
  "domain_blacklist_count": 5,
  "domain": "growinstantly.com",
  "domain_ip": "192.168.1.1",
  "domain_ip_blacklist_count": 3,
  "spam_assassin_score": 2.5,
  "spam_assassin_report": {
    "report": [
      {
        "description": "BODY",
        "name": "HTML_MESSAGE",
        "score": "0.0"
      }
    ]
  },
  "blacklist_report": {
    "address": "growinstantly.com",
    "blacklisted_count": 5,
    "details": [
      {
        "blacklist": "zen.spamhaus.org",
        "is_listed": true,
        "test_type": "ip"
      }
    ],
    "ip": "104.21.62.47",
    "is_blacklisted": true,
    "is_domain": true
  }
}