Skip to main content

Onboarding Checklist

Track your integration progress. Your checklist is saved in your browser — it persists across page refreshes.

0/10 completed0%

Checklist Details

1. API key received and working

Use the Connection Test page to verify your key works and see your account info.

2. Rate limits understood

Check your limits with GET /usage. Read Authentication for rate limit handling.

3. First search completed

Run GET /search?lat=52.52&lng=13.40&radius=10 to find chargers. See Quick Start.

4. Token strategy chosen

Use the Token Strategy Chooser to pick the right strategy for your business model.

5. First booking created

Create a booking with POST /bookings. See your business model guide for the correct request format.

6. Booking status checked

Poll GET /bookings/{id} to watch the status transition: REQUESTED → PENDING → CONFIRMED.

7. Booking cancelled

Test cancellation with POST /bookings/{id}/cancel. Verify the status changes to CANCELLED.

8. Error handling implemented

Ensure your code handles 400, 401, 404, and 429 responses gracefully.

9. Rate limit headers being read

Read X-RateLimit-Remaining from every response and implement backoff for 429 + Retry-After.

10. Ready for production

All previous steps completed. Contact your account manager to confirm production readiness.