Skip to content

List my destinations

GET
/email-routing/destinations/
curl --request GET \
--url https://api.nsin.ir/email-routing/destinations/ \
--header 'Authorization: Bearer <token>'

Every destination on your own account, verified or pending, with how many rules use each.

Destination list.

Media type application/json
Array<object>
object
id
integer
email
string
verified
boolean
verified_at
string format: date-time
nullable
created_at
string format: date-time
last_sent_at

When the last verification mail went out.

string format: date-time
nullable
resend_cooldown_seconds

Seconds until another verification mail may be sent; 0 when allowed now.

integer
in_use

Rules and catch-alls pointing at it.

integer
last_failure

The receiving server’s last refusal, when forwards to it are bouncing.

string
last_failure_at
string format: date-time
nullable
Example generated
[
{
"id": 1,
"email": "example",
"verified": true,
"verified_at": "2026-04-15T12:00:00Z",
"created_at": "2026-04-15T12:00:00Z",
"last_sent_at": "2026-04-15T12:00:00Z",
"resend_cooldown_seconds": 1,
"in_use": 1,
"last_failure": "example",
"last_failure_at": "2026-04-15T12:00:00Z"
}
]

Missing, malformed, revoked or expired API key — or the owning account is inactive.

Media type application/json

The single error shape used by every endpoint.

object
error
required

Human-readable description of what went wrong.

string
Examples
Example invalidKey
{
"error": "invalid API key"
}

The key exceeded its request budget (300 requests per minute by default).

Media type application/json

The single error shape used by every endpoint.

object
error
required

Human-readable description of what went wrong.

string
Examples
Example limited
{
"error": "rate limit exceeded"
}