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