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