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