1. Live Conversion
Enter a Playtomic rating or PadelLevels points to see the live conversion:
Rating → Points (API)
Points → Rating (API)
2. API Usage
The API allows dynamic conversion between Playtomic ratings and PadelLevels points:
https://www.coachcalli.co.uk/padel-resources/PadelLevels_Conversion/api.php?rating=5.0
https://www.coachcalli.co.uk/padel-resources/PadelLevels_Conversion/api.php?points=5400
Use JavaScript fetch to integrate in your own scripts:
fetch("https://www.coachcalli.co.uk/padel-resources/PadelLevels_Conversion/api.php?rating=6.0")
.then(res => res.json())
.then(data => console.log(data));
3. Excel Integration
3.1 Power Query (Recommended)
- Data → Get Data → From Other Sources → From Web.
- Enter the API URL, e.g.,
https://www.coachcalli.co.uk/padel-resources/PadelLevels_Conversion/api.php?rating=5.0. - Expand JSON fields (
rating,points,label). - Use a parameter linked to a cell for dynamic updates.
3.2 WEBSERVICE() Formula
=WEBSERVICE("https://www.coachcalli.co.uk/padel-resources/PadelLevels_Conversion/api.php?rating=" & B2)
Returns raw JSON. Use TEXTBEFORE/TEXTAFTER or Excel 365 functions to extract values.
3.3 Offline Excel Lookup
If you prefer not to use the API, you can use a ready-to-use Excel file with the full lookup table:
Download Excel Lookup File- The file contains two sheets: Members (with examples) and Data (lookup table).
- Column C in the Members sheet automatically calculates PadelLevels points from column B using XLOOKUP.
- Use this as a template for your own member list.
4. Full Rating → PadelLevels Table
This table shows all Playtomic ratings (1.0–7.0, 0.1 increments) and interpolated PadelLevels points:
| Playtomic Rating | PadelLevels Points |
|---|
5. Notes & Tips
- Power Query is best for multiple rows and automatic refresh.
- WEBSERVICE() is for single lookups and requires parsing JSON.
- Offline Excel lookup is convenient for Excel without internet access.
- Download the Excel file above for instant offline conversions with examples.