CartoDB-SQL-API/doc/API.md

350 lines
19 KiB
Markdown
Raw Normal View History

2014-07-09 20:13:40 +08:00
## SQL API
2014-07-09 20:13:40 +08:00
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](http://www.postgresql.org/docs/9.1/static/sql.html).
2014-07-09 20:13:40 +08:00
There are two main situations in which you would want to use the SQL API:
2014-07-09 20:13:40 +08:00
- You want to **insert, update** or **delete** data. For example, you would like to insert a new column with a latitude and longitude data.
2014-07-09 20:13:40 +08:00
- 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.
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
## Authentication
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
### API Key
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
To find your API key:
2014-07-09 20:13:40 +08:00
- 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.
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
<div class="code-title code-request">Query example with the api_key parameter</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q={SQL statement}&api_key={Your API key}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
### OAuth
2014-07-09 20:13:40 +08:00
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](http://oauth.net/) or in the [Beginners Guide to OAuth](http://hueniverse.com/oauth/) from Hueniverse.
2014-07-09 20:13:40 +08:00
For an easier route, check out the CartoDB clients [below](#libraries-in-different-languages).
2014-07-09 20:13:40 +08:00
Getting OAuth keys - For secure access to your application you will need to generate a consumer key in your CartoDB dashboard.
2014-07-09 20:13:40 +08:00
- Go to your dashboard.
- Click on your username in the top right corner, and select "Your API keys."
2014-08-18 20:41:42 +08:00
- 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.
2014-07-09 20:13:40 +08:00
There are many other resources to help you authenticate access via OAuth. For further reading, take a look at [this list](http://oauth.net/code/) or at the libraries available for [integrating CartoDB](#libraries-in-different-languages) 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](http://www.postgresql.org/docs/9.1/static/).
CartoDB is also based on PostGIS, so take a look at the [official PostGIS reference](http://postgis.refractions.net/docs/) 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:
<div class="code-title code-request">SQL QUERY EXAMPLE</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q={SQL statement}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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:
<div class="code-title code-request with-result">SQL QUERY COUNT EXAMPLE</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=SELECT count(*) FROM {table_name}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
<div class="code-title">RESULT</div>
2014-11-15 00:33:26 +08:00
```javascript
2014-07-09 20:13:40 +08:00
{
time: 0.007,
total_rows: 1,
rows: [
{
2014-07-09 20:13:40 +08:00
count: 4994
}
2014-07-09 20:13:40 +08:00
]
}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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
2014-07-09 20:13:40 +08:00
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:
2014-07-09 20:13:40 +08:00
<div class="code-title">JQUERY</div>
2014-11-15 00:33:26 +08:00
```javascript
$.getJSON('https://'+your_account_name+'.cartodb.com/api/v2/sql/?q='+sql_statement, function(data) {
2014-07-09 20:13:40 +08:00
$.each(data.rows, function(key, val) {
// do something!
});
});
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
### 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.
<div class="code-title code-request with-result">JSON</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=SELECT * FROM {table_name} LIMIT 1
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
<div class="code-title">RESULT</div>
2014-11-15 00:33:26 +08:00
```javascript
2014-07-09 20:13:40 +08:00
{
time: 0.006,
total_rows: 1,
rows: [
{
year: " 2011",
month: 10,
day: "11",
the_geom: "0101000020E610...",
cartodb_id: 1,
the_geom_webmercator: "0101000020110F000..."
}
]
}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
2015-01-10 04:50:07 +08:00
Alternatively, you can use the [GeoJSON specification](http://www.geojson.org/geojson-spec.html) to return data from the API. To do so, simply supply the `format` parameter as GeoJSON:
2014-07-09 20:13:40 +08:00
<div class="code-title code-request with-result">GEOJSON</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?format=GeoJSON&q=SELECT * FROM {table_name} LIMIT 1
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
<div class="code-title">RESULT</div>
2014-11-15 00:33:26 +08:00
```javascript
2014-07-09 20:13:40 +08:00
{
type: "FeatureCollection",
features: [
{
2014-07-09 20:13:40 +08:00
type: "Feature",
properties: {
year: " 2011",
month: 10,
day: "11",
2015-10-06 20:49:13 +08:00
cartodb_id: 1
2014-07-09 20:13:40 +08:00
},
geometry: {
type: "Point",
coordinates: [
-97.335,
35.498
]
2014-07-09 20:13:40 +08:00
}
}
2014-07-09 20:13:40 +08:00
]
}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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, SpatiaLite and GeoJSON.
2015-01-10 04:50:07 +08:00
### Output filename
To customize the output filename, add the `filename` parameter to your URL:
<div class="code-title code-request with-result">Customize filename</div>
```bash
https://{account}.cartodb.com/api/v2/sql?filename={custom_filename}&q=SELECT * FROM {table_name} LIMIT 1
2015-01-10 04:50:07 +08:00
```
2014-07-09 20:13:40 +08:00
### Getting table information
2014-07-09 20:13:40 +08:00
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,
2014-07-09 20:13:40 +08:00
<div class="code-title code-request">COLUMNS</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=SELECT * FROM {table_name} LIMIT 1
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
### Response errors
2014-07-09 20:13:40 +08:00
To help you debug your SQL queries, the CartoDB SQL API returns errors as part of the JSON response. Errors come back as follows,
2014-07-09 20:13:40 +08:00
<div class="code-title">RESULT</div>
2014-11-15 00:33:26 +08:00
```javascript
2014-07-09 20:13:40 +08:00
{
error: [
"syntax error at or near "LIMIT""
]
}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
### Write data to your CartoDB account
2014-07-09 20:13:40 +08:00
Performing inserts or updates on your data is simple using your [API key](#authentication). All you need to do is supply a correct SQL [INSERT](http://www.postgresql.org/docs/9.1/static/sql-insert.html) or [UPDATE](http://www.postgresql.org/docs/9.1/static/sql-update.html) 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).
2014-07-09 20:13:40 +08:00
<div class="code-title code-request">COLUMNS</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=INSERT INTO test_table (column_name, column_name_2, the_geom) VALUES ('this is a string', 11, ST_SetSRID(ST_Point(-110, 43),4326))&api_key={Your API key}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
Updates are just as simple. Here is an example, updating a row based on the value of the cartodb_id column.
2014-07-09 20:13:40 +08:00
<div class="code-title code-request">COLUMNS</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=UPDATE test_table SET column_name = 'my new string value' WHERE cartodb_id = 1 &api_key={Your API key}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
## Handling geospatial data
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
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](http://www.postgis.org/documentation/manual-svn/ST_AsGeoJSON.html) will allow you to use JSON for your data but a GeoJSON string for your geometry column only. Alternatively, using a the [ST_AsText](http://www.postgis.org/documentation/manual-svn/ST_AsGeoJSON.html) function will return your geometry as Well-Known Text.
2014-07-09 20:13:40 +08:00
<div class="code-title code-request with-result">ASGEOJSON</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=SELECT cartodb_id,ST_AsGeoJSON(the_geom) as the_geom FROM {table_name} LIMIT 1
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
<div class="code-title">RESULT</div>
2014-11-15 00:33:26 +08:00
```javascript
2014-07-09 20:13:40 +08:00
{
time: 0.003,
total_rows: 1,
rows: [
{
2014-07-09 20:13:40 +08:00
cartodb_id: 1,
the_geom: "{"type":"Point","coordinates":[-97.3349,35.4979]}"
}
2014-07-09 20:13:40 +08:00
]
}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
<div class="code-title code-request with-result">ASTEXT</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=SELECT cartodb_id,ST_AsText(the_geom) FROM {table_name} LIMIT 1
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
<div class="code-title">RESULT</div>
2014-11-15 00:33:26 +08:00
```javascript
2014-07-09 20:13:40 +08:00
{
time: 0.003,
total_rows: 1,
rows: [
{
cartodb_id: 1,
the_geom: "POINT(-74.0004162 40.6920918)",
}
]
}
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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](http://www.postgis.org/docs/ST_XMin.html), [ST_XMax](http://www.postgis.org/docs/ST_XMax.html), [ST_AsText](http://www.postgis.org/docs/ST_AsText.html), and more.
2014-08-18 20:41:42 +08:00
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](http://www.postgis.org/docs/ST_Transform.html),
2014-07-09 20:13:40 +08:00
<div class="code-title code-request">ASTEXT</div>
2014-11-15 00:33:26 +08:00
```bash
https://{account}.cartodb.com/api/v2/sql?q=SELECT ST_Transform(the_geom,4147) FROM {table_name} LIMIT 1
2014-11-15 00:33:26 +08:00
```
2014-07-09 20:13:40 +08:00
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](http://www.postgis.org/docs/ST_Simplify.html).
* 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.
2014-07-09 20:13:40 +08:00
<!-- TODO: Link to http://blog.cartodb.com/post/53301057653/faster-data-updates-with-cartodb -->
2014-07-09 20:13:40 +08:00
## 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 `https://{account}.cartodb.com/api/v2/`
2014-07-09 20:13:40 +08:00
## Libraries in different languages
2014-07-09 20:13:40 +08:00
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.
2014-07-09 20:13:40 +08:00
- **R**
To help more researchers use CartoDB to drive their geospatial data, we have released the R client library. [Fork it on GitHub!](https://github.com/Vizzuality/cartodb-r)
2014-07-09 20:13:40 +08:00
- **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!](https://github.com/Vizzuality/cartodb-nodejs)
2014-07-09 20:13:40 +08:00
- **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!](https://github.com/Vizzuality/cartodbclient-php)
2014-07-09 20:13:40 +08:00
- **PYTHON**
2014-07-18 17:57:39 +08:00
Provides API Key and xAuth access to SQL API. [Fork it on GitHub!](https://github.com/vizzuality/cartodb-python)
2014-07-09 20:13:40 +08:00
- **JAVA**
2014-11-05 16:40:34 +08:00
Very basic example of how to access CartoDB SQL API using OAuth. [Fork it on GitHub!](https://github.com/cartodb/cartodb-java-client)
2014-07-09 20:13:40 +08:00
- **NET**
.NET library for authenticating with CartoDB using OAuth based on work started by [The Data Republic](http://www.thedatarepublic.com/). [Fork it on GitHub!](https://github.com/thedatarepublic/CartoDBClientDotNET)
2014-07-09 20:13:40 +08:00
- **Clojure**
Clojure library for authenticating with CartoDB using OAuth, maintained by [REDD Metrics](http://www.reddmetrics.com/). [Fork it on GitHub!](https://github.com/reddmetrics/cartodb-clj)
2014-07-09 20:13:40 +08:00
- **iOS**
Objective-C library for interacting with CartoDB in native iOS applications. [Fork it on GitHub!](https://github.com/jmnavarro/cartodb-objectivec-client)
## Other Tips and Questions
### What does CartoDB do to prevent SQL injection?
CartoDB uses the database access mechanism itself for security. Every writable connection is verified by an API key, and if you have the correct API key, you can write to anything the database allows you to write to. If you dont have the correct API key, your client is "logged in" as a low privilege user, and you can read anything the database allows you to read.
SQL injection works by tricking a database user that is only showing you certain parts of the database to show all of it, or by tricking the database into writing things it shouldn't. This happens when the database connection has perhaps more privileges than you would freely hand out to your API users.
Because CartoDB enforces roles and access at the database level, the idea of a “SQL injection attack” is not possible with CartoDB. Injection is possible, but clients will still run into our security wall at the database level. Put another way, the SQL API already lets you _attempt_ to run any query you want. The database will reject your SQL API request if it finds your user/role doesn't have the requisite permissions. In other words, you can ask any question of the database you like; the CartoDB database doesnt guarantee it will be answered.
If a user's API key found its way out into the wild, then that would be a problem but is not something CartoDB can prevent. This is why it is very important for all CartoDB users to secure their API keys. In the event a user's API key is compromised, either the user or the CartoDB Enterprise administrator can regenerate the API key in their account settings.
### What levels of database access can roles/users have?
There are three levels of access with CartoDB:
1. __API Key level:__ Do whatever you want in your account on the tables you own (or have been shared with you in Enterprise/multi-user accounts).
2. __"publicuser" level:__ Do whatever has been granted to you. The publicuser level is normally read-only, but you could GRANT INSERT/UPDATE/DELETE permissions to publicuser if needed for some reason - for API key-less write operations. Use with caution.
3. __postgres superadmin level:__ This third access level, the actual PostgreSQL system user, is only accessible from a direct database connection via the command line, which is only available currently via [CartoDB On-Premises](https://cartodb.com/on-premises/).
### If a user has write access and makes a `DROP TABLE` query, is that data gone?
Yes. Grant write access with caution and keep backups of your data elsewhere / as duplicate CartoDB tables.
### Is there an in between where a user can write but not `DROP` or `DELETE`?
Yes. Create the table, and GRANT INSERT/UPDATE to the user.
### Is there an actual PostgreSQL account for each CartoDB login/username?
Yes, there is. Unfortunately, the names are different - though there is a way to determine the name of the PostgreSQL user account. Every CartoDB user gets their own PostgreSQL database. But theres a system database too, with the name mappings in `username` and `database_name` columns. `database_name` is the name of the database that user belongs to. It will be `cartodb_user_ID`. `id` holds long hashkey. The `database_name` is derived from this ID hash too, but in case of an Enterprise/multi-user account it will come from the user ID of the owner of the organization - and `database_name` will hold the same value for every user in an Enterprise/multi-user account.
You can also just do `select user` using the SQL API (without an API key to get the publicuser name and with an API key to get the CartoDB user's PostgreSQL user name), to determine the name of the corresponding PostgreSQL user.
### Could I configure my CartoDB database permissions exactly the same way I could on my own PostgreSQL instance?
Yes, through using GRANT statements to the SQL API. There are a few caveats to be aware of, including the aforementioned naming differences. Also, you'll be limited to permissions a user has with their own tables. Users dont have PostgreSQL superuser privileges. So they cant be creating languages, or C functions, or anything that requires superuser or CREATEUSER privileges.