Triton One · Schema

Triton One RPC Token

An RPC consumption token issued under a subscription.

SolanaRPCBlockchainWeb3StreamingYellowstoneValidatorgRPCPythnetSuiMonad

Properties

Name Type Description
uuid string
value string Opaque token string used in the Authorization header against Triton RPC endpoints.
auth_username string
name string
rate_tier string
is_active boolean
deactivation_reasons array
View JSON Schema on GitHub

JSON Schema

triton-one-token-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/triton-one/main/json-schema/triton-one-token-schema.json",
  "title": "Triton One RPC Token",
  "description": "An RPC consumption token issued under a subscription.",
  "type": "object",
  "required": ["uuid", "name", "rate_tier"],
  "properties": {
    "uuid": { "type": "string", "format": "uuid" },
    "value": { "type": "string", "description": "Opaque token string used in the Authorization header against Triton RPC endpoints." },
    "auth_username": { "type": "string" },
    "name": { "type": "string" },
    "rate_tier": {
      "type": "string",
      "enum": ["free", "tier1", "tier2", "tier3", "dedi"]
    },
    "is_active": { "type": "boolean" },
    "deactivation_reasons": {
      "type": "array",
      "items": { "type": "string" }
    }
  }
}