Get Started in Minutes
The ProBiddr API uses RESTful endpoints with JSON payloads. All requests require authentication via JWT access tokens.
- 1 Sign up for a ProBiddr account (homeowner or contractor)
- 2 Authenticate with your credentials to receive tokens
- 3 Include the access token in all API requests
- 4 Start posting jobs or submitting bids
View full API documentation →
curl -X POST https://api.probiddr.com/v1/auth/login \
-H "Content-Type: application/json" \
-d '{
"email": "contractor@example.com",
"password": "your_password"
}'
curl https://api.probiddr.com/v1/jobs \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
curl -X POST https://api.probiddr.com/v1/jobs \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"title": "Kitchen Remodel",
"description": "Full kitchen renovation...",
"trade": "General Contractor",
"priority": "standard"
}'