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