Skip to content

Commit 3049a40

Browse files
committed
🔧 fix: update SQL docs
1 parent 26495db commit 3049a40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The **SQL API** provides direct SQL access to our entire ecosystem of indexed bl
77
You 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

1313
For 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/).

0 commit comments

Comments
 (0)