Search
⌃K

REST How-To

Making your first REST API is easy and can be done from your browser or API tools like Postman.
REST calls are made up of:
  • Base url: https://api.exm.dev/
  • Module: Example: api or read
  • Token (For authenticated-based APIs). This can be added in your url ?token=YOUR_TOKEN_HERE
Getting the state of a serverless function in EXM (No token needed):
Sending a transaction
curl --location --request POST 'https://api.exm.dev/api/transactions?token=YOUR_TOKEN_HERE' ...
Certain actions might always require an EXM Token (API Key). For more information about how to create one, click here.