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