15 KiB
SQL API
CartoDB's SQL API allows you to interact with your tables and data inside CartoDB as if you were running SQL statements against a normal database. The database behind CartoDB is PostgreSQL so if you need help with specific SQL statements or you want to learn more about it, visit the official documentation.
There are two main situations in which you would want to use the SQL API:
-
You want to insert, update or delete data. For example, you would like to insert a new column with a latitude and longitude data.
-
You want to select data from public tables in order to use it on your website or in your app. For example, you need to find the 10 closest records to a particular location.
Remember that in order to access, read or modify data in private tables, you will need to authenticate your requests. When a table is public, you can do non-authenticated queries that read data, but you cannot write or modify data without authentication.
Authentication
For all access to private tables and for write access to public tables, CartoDB enforces secure API access that requires you to authorize your queries. In order to authorize queries, you can use an API key or a Consumer Key and Secret from OAuth.
API Key
The API key offers the simplest way to access private data or perform writes and updates to your public data. Remember that your API key protects access to your data, so keep it confidential and only share it if you want others to have this access. If necessary, you can reset your API key in your admin dashboard.
To find your API key:
- Go to your dashboard.
- Click on your username in the top right corner, and select "Your API keys."
- Here, you can copy your API key, see use examples, and reset your API key.
To use your API key, pass it as a parameter in an URL call to the CartoDB API. For example, to perform an insert into your table, you would use the following URL structure.
OAuth
OAuth is an authentication protocol that enables users to give permission to an application to act on their behalf without sharing their password. More information can be found at the OAuth website or in the Beginner’s Guide to OAuth from Hueniverse.
For an easier route, check out the CartoDB clients below.
Getting OAuth keys - For secure access to your application you will need to generate a consumer key in your CartoDB dashboard.
- Go to your dashboard.
- Click on your username in the top right corner, and select "Your API keys."
- Here, you can view and copy your OAuth Keys and Tokens, and you can request new OAuth Keys. Remember that requesting new OAuth Keys will affect all applications using OAuth for your CartoDB application, and that your old keys will immediately become invalid.
There are many other resources to help you authenticate access via OAuth. For further reading, take a look at this list or at the libraries available for integrating CartoDB with several programming languages.
Making calls to the SQL API
CartoDB is based on the rock solid PostgreSQL database. All of your tables reside a single database, which means you can perform complex queries joining tables or carrying out geospatial operations. The best place to learn about PostgreSQL's SQL language is the official documentation.
CartoDB is also based on PostGIS, so take a look at the official PostGIS reference to know what functionality we support in terms of geospatial operations. All of our tables include a column called the_geom, which is a geometry field that indexes geometries in the EPSG:4326 (WGS 1984) coordinate system. All tables also have an automatically generated and updated column called the_geom_webmercator. We use the column internally to quickly create tiles for maps.
URL endpoints
All SQL API requests to your CartoDB account should follow this general pattern:
If you encounter errors, double-check that you are using the correct account name, and that your SQL statement is valid. A simple example of this pattern is conducting a count of all the records in your table:
Finally, remember that in order to use the SQL API, either your table must be public, or you must be authenticated using API Keys or OAuth, as discussed above.
POST and GET
The CartoDB SQL API is setup to handle both GET and POST requests. You can test the GET method directly in your browser. Below is an example of a JQuery SQL API request to CartoDB:
By default, GET requests work from anywhere. In CartoDB, POST requests work from any website as well. We achieve this by hosting a cross-domain policy file at the root of all of our servers. This allows you the greatest level of flexibility when developing your application.
Response formats
The standard response from the CartoDB SQL API is JSON. If you are building a web-application, the lightweight JSON format allows you to quickly integrate data from the SQL API.
Alternatively, you can use the GeoJSON specification to return data from the API. To do so, simply supply the format parameter as GeoJSON:
The SQL API accepts other output formats that can be useful to export data. Right now you can use the following formats: CSV, SHP, SVG, KML, GeoJSON.
Getting table information
Currently, there is no public method to access your table schemas. The simplest way to retrieve table structure is to access the first row of the data,
Response errors
To help you debug your SQL queries, the CartoDB SQL API returns errors as part of the JSON response. Errors come back as follows,
You can use these errors to help understand your SQL. For more complete documentation see the Error Codes and Solutions section of this Users Guide.
Write data to your CartoDB account
Performing inserts or updates on your data is simple using your API key. All you need to do is supply a correct SQL INSERT or UPDATE statement for your table along with the api_key parameter for your account. Be sure to keep these requests private, as anyone with your API key will be able to modify your tables. A correct SQL insert statement means that all the columns you want to insert into already exist in your table, and all the values for those columns are the right type (quoted string, unquoted string for geoms and dates, or numbers).
Updates are just as simple. Here is an example, updating a row based on the value of the cartodb_id column.
Handling geospatial data
Handling geospatial data through the SQL API is easy! By default, the_geom is returned straight from the database, in a format called Well-Known Binary. There are a handful of ways you can transform your geometries into more useful formats.
The first, is to use the format=GeoJSON method described above. Others can be handled through your SQL statements directly. For example, enclosing your the_geom in a function called ST_AsGeoJSON will allow you to use JSON for your data but a GeoJSON string for your geometry column only. Alternatively, using a the ST_AsText function will return your geometry as Well-Known Text.
More advanced methods exist in the PostGIS library to extract meaningful data from your geometry. Explore the PostGIS documentation and get familiar with functions such as, ST_XMin, ST_XMax, ST_AsText, and more.
All data returned from the_geom column is in WGS 84 (EPSG:4326). You can change this quickly and easily on the fly using SQL. For example, if you desire geometries in the Hanoi 1972 (EPSG:4147) projection, you could ST_Transform,
CartoDB also stores a second geometry column, the_geom_webmercator. We use this internally to build your map tiles as fast as we can. In the user-interface it is hidden, but it is visible and available for use. In this column we store a reprojected version of all your geometries using Web Mercator (EPSG:3857).
Query optimizations
There are some tricks to consider when using the SQL API that might make your application a little faster.
-
Only request the fields you need. Selecting all columns will return a full version of your geometry in the_geom as well as a reprojected version in the_geom_webmercator.
-
Use PostGIS functions to simplify and filter out unneeded geometries when possible. One very handy function is, ST_Simplify.
-
Remember to build indexes that will speed up some of your more common queries.
-
Use cartodb_id to retrieve specific rows of your data, this is the unique key column added to every CartoDB table.
API version number
All CartoDB applications use Version 2 of our APIs. All other APIs are deprecated and will not be maintained or supported. You can check that you are using Version 2 of our APIs by looking at your request URLS. They should all begin contain /v2/ in the URLs as follows http://{account}.cartodb.com/api/v2/
Libraries in different languages
To make things easier for developers we provide client libraries for different programming languages. These clients take care of handling OAuth to CartoDB and some of them provide some caching functionalities.
-
RUBY
The Ruby library is our most mature CartoDB client and is being used in CartoSet. Fork it on GitHub! -
R
To help more researchers use CartoDB to drive their geospatial data, we have released the R client library. Fork it on GitHub! -
NODE.js
This demo app authenticates with your CartoDB over OAuth/XAuth and shows how to perform read and write queries using the SQL API. Fork it on GitHub! -
PHP
The PHP library handles basic OAuth and provides a wrapper around the SQL API to get PHP objects straight from SQL calls to CartoDB. Fork it on GitHub! -
PYTHON
Provides API Key and xAuth access to SQL API. Fork it on GitHub! -
JAVA
Very basic example of how to access CartoDB SQL API using OAuth. Fork it on GitHub! -
NET
.NET library for authenticating with CartoDB using OAuth based on work started by The Data Republic. Fork it on GitHub! -
Clojure
Clojure library for authenticating with CartoDB using OAuth, maintained by REDD Metrics. Fork it on GitHub! -
iOS
Objective-C library for interacting with CartoDB in native iOS applications. Fork it on GitHub!