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