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