Pay-per-story interactive script purchase via x402 on Base network
What it does
This x402 endpoint lets agents purchase and start interactive story scripts from StoryVerseLab. When called with a valid x402 payment header, the endpoint returns the full script content along with instructions to begin the story. Payment is denominated in USDC on the Base network.
The endpoint follows the x402 protocol: an unauthenticated POST to the resource returns a 402 challenge specifying the payment terms (amount, asset, payTo address, timeout). Once the agent constructs and attaches a valid X-PAYMENT header, the server delivers the purchased script. The output schema indicates the response includes a "script" field (the full script content) and an "instructions" field (instructions to start the story). The path includes a script ID parameter (here, ID 3), suggesting multiple scripts may be available at different IDs.
Documentation is extremely sparse — the provider's origin returns 404 on all common paths (/docs, /api, /pricing, /README), and no OpenAPI spec or plugin manifest is available. All information is derived solely from the x402 challenge payload. The maximum payment required is 300,000 units of USDC (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base), which at 6 decimals equals $0.30 USD per script purchase.
Capabilities
Use cases
- —Agent purchases an interactive story script to present to a user
- —Automated content acquisition for storytelling applications
- —Pay-per-use access to narrative content for chatbot or game integrations
Fit
Best for
- —AI agents needing on-demand interactive story content
- —Applications integrating paid narrative experiences
- —Developers experimenting with x402 micropayments for content
Not for
- —Free or bulk content retrieval — each script requires a separate payment
- —Use cases requiring detailed API documentation or OpenAPI specs
- —Non-Base-network payment flows
Quick start
curl -X POST http://x402.storyverselab.ai/script/3/purchase \
-H "X-PAYMENT: <valid_x402_payment_header>"Example
Response
{
"script": "You awaken in a dimly lit chamber. Two doors stand before you...",
"instructions": "Read the script aloud. At each choice point, select an option to continue the story."
}Endpoint
Quality
The endpoint is live and returns a well-formed x402 challenge with an output schema, but there is zero external documentation, no OpenAPI spec, no landing page, and no additional context beyond the challenge payload itself. All description details are inferred from the challenge.
Warnings
- —No documentation available — all crawled paths return 404
- —No OpenAPI or plugin manifest found
- —Output schema describes GET method with path params but the challenge was captured via POST — actual request semantics are unclear
- —Only one script ID (3) is confirmed; availability of other IDs is unknown
- —Provider origin has no landing page
Citations
- —Endpoint returns 402 with x402 challenge requiring USDC payment on Base networkhttp://x402.storyverselab.ai/script/3/purchase
- —Maximum amount required is 300000 units of USDC (asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)http://x402.storyverselab.ai/script/3/purchase
- —Payment address is 0x3e9F7F14f88FB23911396705d51326497244Ca7bhttp://x402.storyverselab.ai/script/3/purchase
- —Output includes script content and instructions fieldshttp://x402.storyverselab.ai/script/3/purchase