MOONR.FUN
DEVELOPERS

MOONR API

Read the same verified Arc data used by the interface. Responses are JSON and addresses use the standard 0x format.

Live dataCurve state and trade logs come from Arc RPC.
Verified metadataOffchain records are matched to the onchain metadata commitment.
No API keyPublic read endpoints are available from the same origin.
MethodEndpointReturns
GET/api/status?network=testnetService state and Factory configuration
GET/api/deployments?network=testnetVerified Factory deployment and live settings
GET/api/tokens?network=testnetLive token list and aggregate market statistics
GET/api/tokens/{address}?network=testnetToken, curve, chart points, and onchain trades
POST/api/contactCreate a support request
POST/api/abuseSubmit a trust and safety report
Example requestList testnet tokens
fetch('/api/tokens?network=testnet')
  .then(response => response.json())
  .then(({ tokens, stats }) => {
    console.log(tokens, stats);
  });

Write endpoints validate input and may require a signed-in user or Factory administrator. Smart-contract writes are always signed in the user's wallet, never by the API.