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