1. Enrich your place data
If you already have place data, you can enrich it with over 40 attributes using RepromptDon’t have place data yet? You can generate your own dataset using our Find Places tool or experiment with csv data and custom AI attributes in our Workbooks.
2. Your First Live Enrichment
Let’s enrich a single place with basic information. Theinputs
object requires a place name along with either coordinates (latitude/longitude) or an address.
{your_org_slug}
with your actual organization slug. The API key variable will be automatically populated.
Include a
place_id
: We recommend providing your own stable identifier (like your database ID) as place_id
. This makes it easy to join enriched results back to your data. If not provided, we’ll auto-generate a UUID for you.Input Flexibility
Theinputs
object accepts different combinations:
Option 1: Name + Coordinates
3. Understanding the Response
The API will return enriched data about the place, including yourplace_id
for easy joining:
4. Available Attributes
Specify exactly which attributes you want to enrich using theattributes
array. Common attributes include:
Attribute | Description |
---|---|
websites | Business website URL |
phoneNumbers | Phone number |
social_profiles | Social media handles (Instagram, Facebook, etc.) |
closed_permanently | Whether the business is permanently closed |
price_tier | Price range (e.g., $, $$, $$$) |
categories | Type of cuisine (for restaurants) |
openingHours | Opening hours |
names | Alternative names for the business |
address | Address |
5. Batch Processing
For multiple places, use batch processing for asynchronous enrichment:/place_enrichment/batches
endpoint, then track progress and retrieve results using the returned batch ID. Each result will include the place_id
you provided for easy matching back to your database.
Learn more in our Batch Processing Guide.
6. Next Steps
Now that you’ve made your first API call, explore more:- API Reference - Complete endpoint documentation
- Batch Processing - Process multiple places efficiently