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