From a52d6062c839dd9957d811687d53fa27c17f34dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Medina=20=28aka=20MacGyver=29?= Date: Thu, 13 Jun 2019 10:28:16 +0200 Subject: [PATCH] Update 08-making-calls.md --- docs/guides/08-making-calls.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/guides/08-making-calls.md b/docs/guides/08-making-calls.md index 9a84a3a8..ac06d24b 100644 --- a/docs/guides/08-making-calls.md +++ b/docs/guides/08-making-calls.md @@ -37,7 +37,13 @@ https://{username}.carto.com/api/v2/sql?q=SELECT count(*) FROM {table_name} } ``` -Finally, remember that in order to use the SQL API, either your table must be public, or you must be [authenticated]({{site.sqlapi_docs}}/guides/authentication/#authentication) using API Keys. +**Tip:** Finally, remember that in order to use the SQL API, either your table must be public, or you must be [authenticated]({{site.sqlapi_docs}}/guides/authentication/#authentication) using API Keys. + +So, using the same Count Example, it would be as follows: + +```bash +https://{username}.carto.com/api/v2/sql?api_key={your_api_key}&q=SELECT count(*) FROM {table_name} +``` ### POST and GET