Services
API Reference
- Back Office
- Listings
- Historical Photos
- Vehicles
- Taxes & Fees
- Consumers
- Credit
- Services
- Invoices
- Companies
- GETGet Companies
- POSTCreate a new Company
- GETRetrieve a Company
- PATCHUpdate an existing Company
- GETGet Dealers
- GETRetrieve a Dealer
- GETGet Contacts
- POSTCreate a new Contact
- GETRetrieve a Contact
- PATCHUpdate an existing Contact
- GETGet Insurers
- GETRetrieve an Insurer
- GETGet Lenders
- POSTCreate a new Lender
- GETRetrieve a Lender
- PATCHUpdate an existing Lender
- GETGet Facilitators
- GETRetrieve a Facilitator
- GETGet Partners
- GETRetrieve a Partner
- GETGet Affiliates
- GETRetrieve an Affiliate
- GETGet Developers
- POSTCreate a new Developer
- GETRetrieve a Developer
- PATCHUpdate an existing Developer
- GET
- Locations
- Webhooks
- Inspection
Companies
Retrieve a Dealer
GET
/
dealers
/
{id}
curl --request GET \
--url https://commerce.driv.ly/api/dealers/{id}
{
"data": {
"location": {
"latitude": 39.7487,
"longitude": -104.999
},
"addresses": [
{
"city": {
"name": "Denver",
"state": {
"code": "CO"
}
},
"zip": "80202",
"line2": "Suite 400",
"line1": "100 Business Park Ave"
}
]
},
"success": true
}
Path Parameters
Customer is uniquely identified by id
Query Parameters
The number of levels of related objects to include in the response
Response
200
application/json
Dealer Found
The response is of type object
.
curl --request GET \
--url https://commerce.driv.ly/api/dealers/{id}
{
"data": {
"location": {
"latitude": 39.7487,
"longitude": -104.999
},
"addresses": [
{
"city": {
"name": "Denver",
"state": {
"code": "CO"
}
},
"zip": "80202",
"line2": "Suite 400",
"line1": "100 Business Park Ave"
}
]
},
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.