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