Get an authenticated clone URL for a paid Git repository via MPP micropayment.
What it does
Code Storage is a paid Git repository service accessible through the Micropayment Protocol (MPP) on the Tempo L2 network. The endpoint at `/repos/:id` returns an authenticated clone URL for a specified repository. Each call is a one-shot charge settled in pathUSD on Tempo (chain ID 4217), costing 0.01 pathUSD per request (10,000 base units with 6 decimals). The provider covers gas fees (feePayer: true), so callers only pay the listed amount.
This endpoint is part of a broader Code Storage service that also supports repository creation and retrieval of clone URLs. The `:id` path parameter identifies the target repository. The MPP challenge confirms the endpoint is live and uses the "charge" intent, meaning each GET request requires a single payment. Settlement goes to recipient address `0xca4e835F803cB0b7C428222B3A3B98518d4779Fe`.
No documentation pages, OpenAPI schema, or usage examples were found on the provider's domain — all auxiliary routes return 404. The endpoint itself is confirmed live via the 402 MPP challenge. Without further docs, the exact response schema (e.g., the structure of the clone URL payload) is unknown and must be inferred from the service description.
Capabilities
Use cases
- —Retrieve an authenticated Git clone URL for a specific repository
- —Integrate paid repository access into CI/CD pipelines or developer tooling
- —Allow AI agents to programmatically access private Git repos on demand
Fit
Best for
- —Agents or services that need on-demand authenticated Git clone URLs
- —Micropayment-gated access to private repositories
- —Developers building tooling on the Tempo L2 ecosystem
Not for
- —Free or open-source repository hosting needs
- —Bulk repository management or administration tasks
- —Users who need full Git server functionality (push, branches, PRs)
Quick start
# GET the clone URL for a repository (requires MPP payment header)
curl -X GET https://codestorage.mpp.tempo.xyz/repos/YOUR_REPO_ID \
-H "Authorization: Payment <mpp-payment-token>"Endpoint
Quality
The endpoint is confirmed live via a valid 402 MPP challenge, and pricing is clear (0.01 pathUSD per call). However, there is no documentation, no OpenAPI schema, no response examples, and all auxiliary pages return 404. The listing is largely inferred from the MPP challenge and the existing title/description.
Warnings
- —No documentation found — all doc/api/pricing/README routes return 404
- —No OpenAPI or response schema available; response format is unknown
- —Currency address 0x20c000000000000000000000b9537d11c60e8b50 assumed to be pathUSD (6 decimals) based on Tempo L2 context — not independently verified
Citations
- —Endpoint returns 402 with MPP challenge confirming it is live with intent=charge and method=tempohttps://codestorage.mpp.tempo.xyz/repos/:id
- —Price is 10000 base units on chain ID 4217 with feePayer true, recipient 0xca4e835F803cB0b7C428222B3A3B98518d4779Fehttps://codestorage.mpp.tempo.xyz/repos/:id