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 configurationGET
/api/deployments?network=testnetVerified Factory deployment and live settingsGET
/api/tokens?network=testnetLive token list and aggregate market statisticsGET
/api/tokens/{address}?network=testnetToken, curve, chart points, and onchain tradesPOST
/api/contactCreate a support requestPOST
/api/abuseSubmit a trust and safety reportExample 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.