Overview
All requests are made against https://api.reinterface.com/api/v1 with your API key in the x-api-key header. The same key works across the Email, Calendar, and DNS APIs. Find it under Dashboard → Settings → API key.
bash
-H "x-api-key: <API_KEY>"Example request
bash
curl "https://api.reinterface.com/api/v1/dns/records?domain=company.com" \
-H "x-api-key: <API_KEY>"Security
Keep your key server-side
Never expose your API key in client-side code or public repositories. Attach it on your server and send it in the
x-api-key header — not as ?api_key= in URLs (except OAuth authorize links opened in a browser).