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