Skip to content

GET /v1/pricing

Endpoint

GET /v1/pricing

Authentication: None required.

Example request

Terminal window
curl https://api.getstronghold.xyz/v1/pricing

Response (200)

{
"currency": "USDC",
"network": "base",
"networks": ["base", "solana"],
"routes": [
{
"path": "/v1/scan/content",
"method": "POST",
"price_micro_usdc": "1000",
"price_usd": 0.001,
"description": "Content scanning for prompt injection detection"
},
{
"path": "/v1/scan/output",
"method": "POST",
"price_micro_usdc": "1000",
"price_usd": 0.001,
"description": "Output scanning for credential leak detection"
}
]
}

Response fields

FieldTypeDescription
currencystringPayment currency ("USDC")
networkstringDefault payment network
networksstring[]All supported payment networks
routesarrayList of priced endpoints
routes[].pathstringEndpoint path
routes[].methodstringHTTP method
routes[].price_micro_usdcstringCanonical price as a string-encoded microUSDC integer
routes[].price_usdnumberConvenience price in USD (float)
routes[].descriptionstringHuman-readable endpoint description

price_micro_usdc is the canonical value. It is a string-encoded integer where "1000" equals 1000 microUSDC ($0.001). price_usd is a convenience float and should not be used for payment calculations.