You have the lat lng reversed.
Performing this request:
curl --location --request GET \
'https://api.mapbox.com/geocoding/v5/mapbox.places/-117.15991102159023,32.70972385426521.json?types=place&access_token=TOKEN'
resulted in this response:
{
"type": "FeatureCollection",
"query": [
-117.15991102159023,
32.70972385426521
],
"features": [
{
"id": "place.11741308809618150",
"type": "Feature",
"place_type": [
"place"
],
"relevance": 1,
"properties": {
"wikidata": "Q16552"
},
"text": "San Diego",
"place_name": "San Diego, California, United States",
"bbox": [
-117.266223298428,
32.534171982,
-116.853118984,
33.0722089336828
],
"center": [
-117.1628,
32.7174
],
"geometry": {
"type": "Point",
"coordinates": [
-117.1628,
32.7174
]
},
"context": [
{
"id": "region.9697035897738010",
"short_code": "US-CA",
"wikidata": "Q99",
"text": "California"
},
{
"id": "country.19352517729256050",
"short_code": "us",
"wikidata": "Q30",
"text": "United States"
}
]
}
],
"attribution": "NOTICE: © 2020 Mapbox and its suppliers. All rights reserved. Use of this data is subject to the Mapbox Terms of Service (https://www.mapbox.com/about/maps/). This response and the information it contains may not be retained. POI(s) provided by Foursquare."
}