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