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