API Reference
Tests
Email deliverability tests. Create tests to send emails to our seed network and measure inbox placement, authentication, and spam scores.
Create a new email deliverability test. Returns a test object with a unique test_address. Send your email to this address to begin the test.
Headers
Idempotency-KeystringUnique key for idempotent requests (max 255 characters)
Request Bodyrequired
fromstring<email>requiredThe sender email address for the test
subjectstringSubject line of the test email (optional, for matching)
providersarraySpecific providers to test (default: all available)
gmailoutlookyahootest_modestringTest speed/depth tradeoff
fastfullmetadataobjectKey-value pairs for your reference (max 20 keys)
Response
idstringUnique test identifier (test_xxx)
objectstringAlways 'test'
from_addressstring<email>test_addressstring<email>Send your email here
statusstringpendingawaiting_emailrunningcompletedfailedexpiredcreated_atstring<date-time>livemodebooleanExample Request
curl -X POST https://api.reachscore.co/v1/tests \
-H "Authorization: Bearer rk_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"from": "marketing@yourcompany.com",
"subject": "Spring Newsletter",
"test_mode": "full"
}'Example Response
{
"id": "test_7xK2mN9pQrT4v",
"object": "test",
"from_address": "marketing@yourcompany.com",
"test_address": "test-7xk2mn9p@inbound.reachscore.co",
"status": "awaiting_email",
"created_at": "2026-03-11T10:30:00Z",
"livemode": true
}