List Glossary Terms
curl --request GET \
--url https://api.blockworks.com/v1/glossary \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/glossary"
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/glossary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"page": 1073741824,
"total": 50,
"data": [
{
"id": 2147483647,
"term": "<string>",
"definition": "<string>",
"status": true,
"slug": "<string>"
}
]
}glossary
List Glossary Terms
List glossary terms with pagination and optional filters.
GET
/
v1
/
glossary
List Glossary Terms
curl --request GET \
--url https://api.blockworks.com/v1/glossary \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/glossary"
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/glossary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"page": 1073741824,
"total": 50,
"data": [
{
"id": 2147483647,
"term": "<string>",
"definition": "<string>",
"status": true,
"slug": "<string>"
}
]
}Authorizations
Query Parameters
Required range:
1 <= x <= 2147483647Required range:
1 <= x <= 1000Required range:
0 <= x <= 4294967295Available options:
slug Available options:
asc, desc