List Charts
curl --request GET \
--url https://api.blockworks.com/v1/charts \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/charts"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockworks.com/v1/charts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": 123,
"title": "<string>",
"dashboards": [
"<string>"
]
}
],
"total": 123,
"page": 123
}Charts
List Charts
Retrieve a paginated list of available charts.
GET
/
v1
/
charts
List Charts
curl --request GET \
--url https://api.blockworks.com/v1/charts \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/charts"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockworks.com/v1/charts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": 123,
"title": "<string>",
"dashboards": [
"<string>"
]
}
],
"total": 123,
"page": 123
}Authorizations
Query Parameters
Required range:
1 <= x <= 2147483647Required range:
1 <= x <= 100Maximum string length:
255