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