Send an HPKE-sealed literature query to Aubrai and receive an encrypted result
Send an HPKE-sealed literature query to Aubrai and receive an encrypted result. The transport terminates at Aubrai; literature retrieval and evidence processing use external services. Always async — poll the returned pollUrl.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.03listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://x402-api.aubr.ai/api/literature/encrypted
| Category | Everything else |
|---|---|
| Provider host | x402-api.aubr.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 178 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"hpke_ciphertext": "<base64-encrypted-query>",
"hpke_ephemeral_public_key": "<base64-ephemeral-pubkey>"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"hpke_ciphertext": {
"description": "HPKE-encrypted literature query, base64-encoded",
"type": "string"
},
"hpke_ephemeral_public_key": {
"description": "Sender's one-time X25519 public key, base64-encoded",
"type": "string"
}
},
"required": [
"hpke_ciphertext",
"hpke_ephemeral_public_key"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"bodyType",
"body",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}