Domain Reputation API

API reference

Domain Reputation HTTP endpoints on api.syndaq.com.

All Domain Reputation endpoints are served from https://api.syndaq.com/v1/domainrep/.

Authenticated requests require a valid Domain Reputation key. Lookup routes require your dr_sec_ secret key.

Endpoints overview

MethodPathAuthPurpose
GET/v1/domainrep/lookupSecret keyLookup by ?domain= query parameter
GET/v1/domainrep/lookup/{domain}Secret keyLookup by domain in the URL path
GET/v1/domainrep/statusPublic or secret keyPlan limits and quota snapshot

Response headers

Successful and error responses may include:

HeaderDescription
X-Request-IdUnique ID for support and log correlation
X-RateLimit-LimitPlan requests per minute for this key
X-RateLimit-RemainingRequests left in the current minute window
X-RateLimit-ResetUnix timestamp when the minute window resets
X-Quota-LimitMonthly quota for the subscription
X-Quota-RemainingLookups left this calendar month (UTC)
X-Quota-PeriodCurrent quota month (YYYY-MM)
Retry-AfterSeconds to wait after HTTP 429

GET /v1/domainrep/lookup

Scores a domain for risk using Syndaq domain reputation signals.

Request

Pass the target domain using one of these forms:

GET /v1/domainrep/lookup/example.com
GET /v1/domainrep/lookup?domain=example.com

Headers:

Authorization: Bearer dr_sec_YOUR_SECRET_KEY

v1 scope

v1 returns a composite risk score and weighted signals. Higher scores mean more risk. Level thresholds:

LevelScore range
lowbelow 30
medium30–69
high70–100

Success response (200)

{
  "success": true,
  "domain": "example.com",
  "cached": true,
  "score": 18,
  "level": "low",
  "signals": [
    {
      "code": "domain_age",
      "detail": "Domain older than one year",
      "weight": 0
    },
    {
      "code": "email_auth",
      "detail": "Mail authentication readiness is strong",
      "weight": 0
    }
  ],
  "request_id": "e6d04020be9b57b1e1069d6e483c0443"
}

Response fields

FieldTypeDescription
domainstringNormalized domain that was scored
cachedbooleantrue when Syndaq already holds a recent result for this lookup
scoreintegerRisk score from 0–100 (higher = more risky)
levelstringlow, medium, or high
signalsarrayContributing factors (code, detail, weight)

GET /v1/domainrep/status

Returns key status, plan limits, and quota usage without performing a lookup.

Request

GET /v1/domainrep/status
Authorization: Bearer dr_sec_YOUR_SECRET_KEY

The public key (dr_pub_) is accepted on this route.

Success response (200)

{
  "success": true,
  "status": "active",
  "product": "domainrep",
  "plan": "starter",
  "rate_limit_per_minute": 60,
  "monthly_quota": 5000,
  "quota_unlimited": false,
  "quota_remaining": 4877,
  "quota_period": "2026-07"
}

Errors

Failed requests return JSON with success: false, error, error_code, and usually request_id.

HTTPerror_codeTypical cause
400invalid_domainMissing or malformed domain
401missing_credentialsNo API key provided
401invalid_api_keyUnknown, inactive, or revoked key
401wrong_key_typePublic key used on a lookup endpoint
403ip_not_allowedCaller IP not on the key allowlist
429rate_limit_exceededPer-minute limit exceeded
429quota_exceededMonthly quota exhausted
502lookup_failedTemporary reputation lookup failure
500internal_errorUnexpected server error

Handle non-200 responses in your application and retry transient errors with exponential backoff.