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