Direct access
Provider-owned integration
This listing is discovery-only. Calls go straight to the provider and follow the provider's docs and auth model.
Marketplace execution
Disabled
Auth and payment
Provider-defined
Use this listing to discover StableEnrich Google Maps endpoints for local business search and place detail workflows.
## Access model
This is a discovery-only external API. Calls go directly to the provider; the marketplace does not proxy, authenticate, or settle them.
## Setup
1. Review the provider docs before calling any endpoint.
2. Authenticate directly with the provider as required by the provider.
3. Authenticate directly with StableEnrich as required by the provider.
## External Endpoints
### Full place details by ID
Method: GET
Direct URL: https://stableenrich.dev/api/google-maps/place-details/full
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X GET "https://stableenrich.dev/api/google-maps/place-details/full"
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nearby search with basic details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/nearby-search/partial
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/nearby-search/partial" \
-H "Content-Type: application/json" \
-d '{
"locationRestriction": {
"circle": {
"center": {
"latitude": 0,
"longitude": 0
},
"radius": 0
}
}
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Nearby search with full details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/nearby-search/full
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/nearby-search/full" \
-H "Content-Type: application/json" \
-d '{
"locationRestriction": {
"circle": {
"center": {
"latitude": 0,
"longitude": 0
},
"radius": 0
}
}
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Partial place details by ID
Method: GET
Direct URL: https://stableenrich.dev/api/google-maps/place-details/partial
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X GET "https://stableenrich.dev/api/google-maps/place-details/partial"
Fast only lists this provider and its docs; execution happens directly against the provider.
### Text search with basic details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/text-search/partial
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/text-search/partial" \
-H "Content-Type: application/json" \
-d '{
"textQuery": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Text search with full details
Method: POST
Direct URL: https://stableenrich.dev/api/google-maps/text-search/full
Docs: https://stableenrich.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stableenrich.dev/api/google-maps/text-search/full" \
-H "Content-Type: application/json" \
-d '{
"textQuery": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.Have a request?