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