uber_get_price_estimates
Obtain estimated ride costs between specified start and end locations for users. Enables AI assistants to provide accurate fare information for Uber rides.
Instructions
Get price estimates for a ride between two locations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endLatitude | Yes | Destination latitude | |
endLongitude | Yes | Destination longitude | |
startLatitude | Yes | Starting location latitude | |
startLongitude | Yes | Starting location longitude | |
userId | Yes | Unique identifier for the user |
Input Schema (JSON Schema)
{
"properties": {
"endLatitude": {
"description": "Destination latitude",
"type": "number"
},
"endLongitude": {
"description": "Destination longitude",
"type": "number"
},
"startLatitude": {
"description": "Starting location latitude",
"type": "number"
},
"startLongitude": {
"description": "Starting location longitude",
"type": "number"
},
"userId": {
"description": "Unique identifier for the user",
"type": "string"
}
},
"required": [
"userId",
"startLatitude",
"startLongitude",
"endLatitude",
"endLongitude"
],
"type": "object"
}