Core

Accounts API

2 endpoints under https://api.mailneo.co/api/v2. Every request carries your key in the X-API-Key header. The scope used here: accounts:read. Each endpoint below states the one it requires. Start with the guide →

Accounts
listEmailAccounts

List connected sending accounts

The mailboxes this team can send from, with their health. Metadata only — no credentials are exposed by this or any other endpoint. Filter by status=ACTIVE to find accounts that can currently send.

https://api.mailneo.co/api/v2
GET/accountsaccounts:read

Example request

curl "https://api.mailneo.co/api/v2/accounts?limit=25&order=desc&sort=updated_at" \
  -H "X-API-Key: $MAILNEO_API_KEY"
Authorization
Required scope
accounts:read. A key without it is refused before the endpoint runs.
Credential
X-API-Key: mk_live_...Authorization: Bearer mk_live_...
Query parameters7
NameTypeRequiredNotes
limitintegerNodefault 25 · 1–100
cursorstringNomax 256 chars
order"asc" | "desc"Nodefault "desc"
updated_sincestring · date-timeNoISO 8601
sort"updated_at" | "created_at"Nodefault "updated_at"
status"PENDING" | "ACTIVE" | "ERROR" | "SUSPENDED" | "REVOKED"No
provider"GMAIL" | "GOOGLE_WORKSPACE" | "OUTLOOK" | "MICROSOFT" | "SMTP_AMAZON_SES" | "SMTP_SENDGRID" | …No
Response · 200

Success

data[]Each element of the array.

FieldTypeAlways presentNotes
object"email_account"Yes
idstringYes
emailstringYes
display_namestring · nullableYes
providerstringYes
statusstringYes
last_checked_atstring · nullableYes
created_atstringYes
updated_atstringYes

meta

FieldTypeAlways presentNotes
request_idstringYes
has_morebooleanYes
next_cursorstring · nullableYes
synced_throughstringNo
Accounts
getEmailAccount

Retrieve a sending account

Metadata only. No credential field is returned under any parameter.

https://api.mailneo.co/api/v2
GET/accounts/{accountId}accounts:read

Example request

curl "https://api.mailneo.co/api/v2/accounts/{accountId}" \
  -H "X-API-Key: $MAILNEO_API_KEY"
Authorization
Required scope
accounts:read. A key without it is refused before the endpoint runs.
Credential
X-API-Key: mk_live_...Authorization: Bearer mk_live_...
Path parameters1
NameTypeRequiredNotes
accountIdstringYesmax 64 chars
Response · 200

Success

data

FieldTypeAlways presentNotes
object"email_account"Yes
idstringYes
emailstringYes
display_namestring · nullableYes
providerstringYes
statusstringYes
last_checked_atstring · nullableYes
created_atstringYes
updated_atstringYes

meta

FieldTypeAlways presentNotes
request_idstringYes

Next Steps