Get Glossary Term
curl --request GET \
--url https://api.blockworks.com/v1/glossary/{idOrSlug} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/glossary/{idOrSlug}"
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/{idOrSlug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": 2147483647,
"term": "<string>",
"definition": "<string>",
"status": true,
"slug": "<string>"
}glossary
Get Glossary Term
Retrieve a single glossary term by idOrSlug.
GET
/
v1
/
glossary
/
{idOrSlug}
Get Glossary Term
curl --request GET \
--url https://api.blockworks.com/v1/glossary/{idOrSlug} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/glossary/{idOrSlug}"
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/{idOrSlug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": 2147483647,
"term": "<string>",
"definition": "<string>",
"status": true,
"slug": "<string>"
}