Skip to content
On this site

Rasket API

A JSON API for transactional email: one endpoint to send, a webhook to hear what happened, and a dashboard to look when you need to.

Base URL

https://api.rasket.com/emails

HTTPS only. Every path on this site is written relative to that origin, so POST /emails means https://api.rasket.com/emails.

Until that hostname is attached to the deployment, the identical routes answer on the deployment's own host with the /api/v1 prefix spelled out. That form works today:

https://<deployment-host>/api/v1/emails

Same code, same behaviour, same responses — only the origin differs, because api.<domain> is a rewrite onto this deployment rather than a separate service.

Start here

If you have not sent anything yet, the quickstart takes you from an empty account to a delivered email.

What this release does not do

An SMTP gateway is not part of this release and will come later, on its own host, calling this same API — there is nothing to configure for it today.

Reading inbound mail over the API is not here either. A few /emails/receiving routes exist for it and answer 501 not_implemented, which means "ours, not built yet" rather than "wrong id". They are not documented until they do something.