send0
Error codes

not_found

The requested resource doesn't exist.

Status: 404 · Code: not_found

The resource you asked for (an email, template, domain, webhook, contact, etc.) doesn't exist on this workspace.

Common causes

  • Typo in the ID
  • The resource was deleted
  • Using a sk_test_ key to look up a sk_live_ resource, or vice versa — your API key scopes the workspace, and resources don't cross workspaces
  • Copy-pasted the ID from the dashboard but picked up a trailing ellipsis or zero-width character

How to fix

Verify the ID with a list call against the matching collection:

curl -H "Authorization: Bearer $SEND0_API_KEY" \
  "https://api.send0.dev/v1/emails?limit=10"

Every ID has a predictable prefix:

PrefixResource
em_, rec_Emails, recipients
tmpl_Templates
dom_Domains
con_Contacts
wh_, evt_Webhook endpoints, events
key_API keys

If the prefix doesn't match what the endpoint expects, the ID will 404 even if it exists elsewhere.