WheelsChat API
Developer API
Create, update, list, and delete API-created plates with a developer key. Keys belong to the signed-in email account and are stored hashed.
API keys
Sign in with your WheelsChat account to create and revoke developer keys.
Copy this key now
It will not be shown again.
Authentication
Pass the key as a bearer token or with X-API-Key.
Authorization: Bearer wc_live_your_key
Allowed fields
plate state country notify_email notify_phone
API-created plates are flagged with the developer email and exact key ID.
Base URL
https://wheels.chat/api/v1
REST examples
Create plate
curl -X POST https://wheels.chat/api/v1/plates \
-H "Authorization: Bearer wc_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"plate": "ABC123",
"state": "CA",
"country": "US",
"notify_email": "owner@example.com",
"notify_phone": "+15550100"
}'
Update plate
curl -X PATCH https://wheels.chat/api/v1/plates/{id} \
-H "Authorization: Bearer wc_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"notify_email": "new@example.com",
"notify_phone": "+15550101"
}'
List plates
curl https://wheels.chat/api/v1/plates \ -H "Authorization: Bearer wc_live_your_key"
Delete plate
curl -X DELETE https://wheels.chat/api/v1/plates/{id} \
-H "Authorization: Bearer wc_live_your_key"