File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ The **SQL API** provides direct SQL access to our entire ecosystem of indexed bl
77You may use the SQL API within your python project as follows:
88
99``` python
10- api.sql.query(endpoint_url : str , paramters: dict ) -> dict
10+ api.sql.query(sql_query : str , paramters: dict ) -> dict
1111```
1212
1313For example:
@@ -26,9 +26,9 @@ response = api.endpoint.query("SELECT * FROM ethereum.logs LIMIT {{limit}}", par
2626
2727| Parameter | Type | Description |
2828| - | - | - |
29- | ` endpoint_url ` | ` string ` | The custom endpoint URL to query. Your team must be the creators of this query . |
29+ | ` sql_query ` | ` string ` | The SQL query to call . |
3030| ` parameters ` | ` dict ` | The optional parameters for this call. |
3131
3232## More Information
3333
34- You can find more information about the Custom Endpoint API in our [ documentation] ( https://docs.transpose.io/custom-endpoints /overview/ ) .
34+ You can find more information about the Custom Endpoint API in our [ documentation] ( https://docs.transpose.io/sql /overview/ ) .
You can’t perform that action at this time.
0 commit comments