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