Order roof measurement reports, track them to delivery, and pull the files, all over a REST API. Create a free sandbox account and make your first call in minutes.
Place single or bulk orders immediately, poll status, download deliverables. Invoiced on your billing cycle.
CHECKOUTSame surface, with RoofAngle handling the payment gateway. Your customer pays by card before the order is placed.
EVENTSHMAC-signed callbacks for order.created, order.delivered, and more, with automatic retries.
Self-serve signup issues a client ID and secret loaded with dummy data. No sales call.
Exchange your credentials for a bearer token, or send a single x-api-key header.
Call the sandbox exactly like production: same shapes, same responses, no real work ordered.
# 1. Get a token
curl -X POST https://sandboxclient-api.roofangle.com/v4/auth/token \
-H "Content-Type: application/json" \
-d '{"clientId": "ra_client_XXXX", "clientSecret": "YOUR_SECRET"}'
# 2. Create an order
curl -X POST https://sandboxclient-api.roofangle.com/v4/orders \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"customerName": "John Smith",
"customerEmail": "john.smith@example.com",
"address": "123 Main Street, Austin, TX 78701",
"propertyType": "Residential",
"serviceId": "SERVICE_ID"
}'Ready for production credentials? Email support@roofangle.com.