Pay-per-script access to interactive story content via x402 micropayment on Base.
What it does
StoryverseLab offers an x402-enabled endpoint that lets agents purchase and start interactive story scripts. The endpoint at `/script/{id}/purchase` accepts a POST request with an x402 payment header and returns the full script content along with instructions to begin the story. Payment is denominated in USDC on the Base network, with a maximum amount of 0.30 USDC (300000 in raw units, 6 decimals) per purchase.
The x402 challenge is live and well-formed, advertising version 1 of the protocol with an "exact" payment scheme. The output schema indicates the response is a JSON object containing a `script` field (the full script text) and an `instructions` field (guidance on how to start the interactive story). The input schema references a path parameter `id` (number) representing the Script ID, suggesting the service hosts multiple scripts addressable by numeric identifier.
Documentation is essentially absent — the origin server returns 404 on all non-endpoint routes including `/docs`, `/api`, `/pricing`, and the root. There is no OpenAPI spec, no robots.txt, and no agents.txt. All information here is derived solely from the x402 payment challenge. The service appears to be an early-stage or minimal deployment focused on a single interactive-fiction purchase flow.
Capabilities
Use cases
- —AI agents purchasing interactive story scripts for end-user entertainment
- —Automated content acquisition pipelines that pay per story
- —Building interactive fiction experiences with pay-per-access content
- —Demonstrating x402 micropayment flows for digital content
Fit
Best for
- —Agents needing on-demand interactive fiction content
- —Developers experimenting with x402 payment protocol on Base
- —Applications that want pay-per-use story scripts without subscriptions
Not for
- —Free or ad-supported content delivery
- —High-volume bulk story generation (no batch endpoint documented)
- —Non-USDC or non-Base payment workflows
Quick start
curl -X POST http://x402.storyverselab.ai/script/1/purchase \
-H "X-PAYMENT: <x402-payment-header>" \
-H "Content-Type: application/json"Example
Response
{
"script": "You awaken in a dimly lit chamber. A door stands ajar to the north...",
"instructions": "Read the script aloud or feed it to an LLM to begin the interactive story. Choose actions when prompted."
}Endpoint
Quality
The x402 challenge is live and provides a clear output schema, payment details, and description. However, there is zero external documentation, no OpenAPI spec, no examples, and no crawlable content beyond the challenge itself. All listing details are inferred from the 402 response.
Warnings
- —No documentation available — all routes besides the endpoint return 404
- —No OpenAPI or agents.txt discovered
- —Output schema and behavior inferred entirely from x402 challenge; actual response format unverified
- —Provider landing page returns 404, suggesting early-stage or minimal deployment
Citations
- —Endpoint returns a live 402 challenge with x402 version 1, exact scheme, on Base network using USDChttp://x402.storyverselab.ai/script/1/purchase
- —Maximum payment required is 300000 raw USDC units (0.30 USDC)http://x402.storyverselab.ai/script/1/purchase
- —Output schema includes script (string) and instructions (string) fieldshttp://x402.storyverselab.ai/script/1/purchase
- —Pay-to address is 0x3e9F7F14f88FB23911396705d51326497244Ca7bhttp://x402.storyverselab.ai/script/1/purchase