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