Skip to main content
GET
https://api.foxreach.io
/
api
/
v1
/
email-accounts
/
{account_id}
curl -X GET "https://api.foxreach.io/api/v1/email-accounts/cea_abc123" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "id": "cea_abc123",
    "email": "[email protected]",
    "displayName": "John from Company",
    "provider": "gmail",
    "smtpHost": "smtp.gmail.com",
    "smtpPort": 587,
    "imapHost": "imap.gmail.com",
    "imapPort": 993,
    "dailyLimit": 50,
    "sentToday": 12,
    "warmupEnabled": true,
    "warmupDailyLimit": 10,
    "warmupRampUpDays": 14,
    "warmupStartDate": "2025-01-01T00:00:00",
    "healthScore": 95,
    "bounceRate": 0.02,
    "replyRate": 0.08,
    "isActive": true,
    "connectionStatus": "connected",
    "lastError": null,
    "createdAt": "2025-01-01T10:00:00",
    "updatedAt": "2025-01-15T10:30:00"
  }
}

Path Parameters

account_id
string
required
The unique identifier of the email account.

Response

data
object
The email account object. See List Email Accounts for the full schema.
curl -X GET "https://api.foxreach.io/api/v1/email-accounts/cea_abc123" \
  -H "X-API-Key: otr_your_key"
{
  "data": {
    "id": "cea_abc123",
    "email": "[email protected]",
    "displayName": "John from Company",
    "provider": "gmail",
    "smtpHost": "smtp.gmail.com",
    "smtpPort": 587,
    "imapHost": "imap.gmail.com",
    "imapPort": 993,
    "dailyLimit": 50,
    "sentToday": 12,
    "warmupEnabled": true,
    "warmupDailyLimit": 10,
    "warmupRampUpDays": 14,
    "warmupStartDate": "2025-01-01T00:00:00",
    "healthScore": 95,
    "bounceRate": 0.02,
    "replyRate": 0.08,
    "isActive": true,
    "connectionStatus": "connected",
    "lastError": null,
    "createdAt": "2025-01-01T10:00:00",
    "updatedAt": "2025-01-15T10:30:00"
  }
}

Errors

StatusDescription
404Email account not found