$0
$0.005/call. Convert Word, Excel, or PowerPoint to PDF via LibreOffice — layout preserved. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny
10000 (raw units)
price
10
calls / 30d
1
unique payers
2026-09-17
updated
Provider
api.relaystation.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5F7254f252eF9b9f92B6B4F2cF91205eD7A96C7A",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5F7254f252eF9b9f92B6B4F2cF91205eD7A96C7A",
"asset": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"file": {},
"filename": "string",
"options": {
"landscape": true,
"losslessImageCompression": true,
"maxImageResolution": 75,
"pageRanges": "string",
"quality": 1,
"reduceImageResolution": true
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"file": {
"description": "cputools input-source: { inline: <base64 ≤ 4 MiB> } or { inputKey: <scratch key, ≤ 50 MB> }.",
"type": "object"
},
"filename": {
"description": "Source filename; its extension must be a supported office format.",
"maxLength": 255,
"minLength": 1,
"type": "string"
},
"options": {
"additionalProperties": false,
"description": "Optional LibreOffice export controls; absent fields take the engine default.",
"properties": {
"landscape": {
"description": "Force landscape orientation.",
"type": "boolean"
},
"losslessImageCompression": {
"type": "boolean"
},
"maxImageResolution": {
"description": "DPI ceiling for embedded images (closed ladder).",
"enum": [
75,
150,
300,
600,
1200
],
"type": "integer"
},
"pageRanges": {
"description": "Page subset, e.g. \"1-5,8\".",
"maxLength": 255,
"minLength": 1,
"type": "string"
},
"quality": {
"description": "JPEG quality (1–100) for embedded images.",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"reduceImageResolution": {
"description": "Gate for maxImageResolution; must be true for maxImageResolution to apply.",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.relaystation.ai/v1/pdf/from-office" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.relaystation.ai/v1/pdf/from-office");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.relaystation.ai/v1/pdf/from-office")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4598.json, and this resource appears in /discovery/resources and /discovery/search.