TraydTrayd
API REFERENCE · v1

Trayd API

Production-ready REST API. All requests authenticated with bearer tokens. JSON only.

OAuth 2.0 + Bearer
99.97% uptime
Rate limit: 600/min
Region: EU-West
POSThttps://api.trayd.app/v1/auth/session

Create a new session for a user.

Request body
{
  "email": "ciaran@quinnplumbing.ie"
}
200 OK
JSON
{
  "token": "tr_eyJhbGciOi…",
  "userId": "u_4f8a",
  "expiresAt": "2026-05-13T10:00:00Z"
}
cURL
curl -X POST https://api.trayd.app/v1/auth/session \
  -H "Authorization: Bearer $TRAYD_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email":"ciaran@quinnplumbing.ie"}'