Comment on page
How to make my first API call
In this quick start guide, you will learn how to make your first API call against a CARTO API.
- 1.Allow SQL API and LDS API
- 2.Choose the CARTO Data Warehouse connection. Choose
carto_dw
- 3.Select allow access to all sources
Don't share this token
We're going to execute the following query against the CARTO Data Warehouse:
SELECT geom, name FROM `carto-demo-data.demo_tables.populated_places`
curl --get \
--url https://direct-gcp-us-east1.api.carto.com/v3/sql/carto_dw/query \
--data-urlencode "q=SELECT geom, name FROM carto-demo-data.demo_tables.populated_places" \
--header "Authorization: Bearer <API_ACCESS_TOKEN>"
curl --get \
--url https://gcp-us-east1.api.carto.com/v3/lds/geocoding/geocode \
--data-urlencode "address=Valverde del Camino" \
--header "Authorization: <API_ACCESS_TOKEN>"
Last modified 1mo ago