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