Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/sample/0a8f741f73ef72c3e7d4561f4a7d7329501df6bad8a56d289a9598d533c14151
import requests
import json
url = 'https://api.maltiverse.com/sample/0a8f741f73ef72c3e7d4561f4a7d7329501df6bad8a56d289a9598d533c14151'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/sample/0a8f741f73ef72c3e7d4561f4a7d7329501df6bad8a56d289a9598d533c14151'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{}