Authenticate with the AutoLeap Partner API to obtain access tokens.
All other endpoints require a valid access token.
API reference
/- Get item pricing (parts, tires, labor)
Get item pricing by itemId
Get item pricing (parts,...
Overview
The AutoLeap API uses the REST standard, which means you interact with it by making requests over HTTP.
A request usually includes:
- An HTTP method (like
GETorPOST) - A path (the address of the resource)
- Optional headers and parameters (in the path, query string, or request body)
When you send a request, the API responds with:
- A status code (to indicate success or failure)
- Response headers
- Sometimes a response body with useful data
The API reference describes the method, path, and parameters for each endpoint, and includes sample requests and responses you can use as a guide.
Languages
Servers
Production
https://partnerapi.myautoleap.com/v2/
- Productionhttps://partnerapi.myautoleap.com/v2/itemPricing
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://partnerapi.myautoleap.com/v2/itemPricing?companyId=string&itemId=string&size=100&page=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "itemId": "ITEM123", "companyId": "SHOP5678", "itemType": "tire", "pricingDetails": [ { … } ] }
- Productionhttps://partnerapi.myautoleap.com/v2/itemPricing/{itemId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://partnerapi.myautoleap.com/v2/itemPricing/{itemId}?companyId=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "itemId": "ITEM123", "companyId": "SHOP5678", "itemType": "tire", "pricingDetails": [ { … } ] }