Triton One Standard API

Standard Solana JSON-RPC methods accepted at the same endpoint.

Documentation

📖
Documentation
https://docs.triton.one/account-management/api-access/introduction
📖
Authentication
https://docs.triton.one/account-management/api-access/auth-and-headers
📖
Documentation
https://docs.triton.one/account-management/api-access/accounts
📖
Documentation
https://docs.triton.one/account-management/api-access/subscriptions
📖
Documentation
https://docs.triton.one/account-management/api-access/endpoints
📖
Documentation
https://docs.triton.one/account-management/api-access/tokens
📖
Documentation
https://docs.triton.one/account-management/api-access/address-watch-lists
📖
Documentation
https://docs.triton.one/account-management/api-access/rate-tiers
📖
Documentation
https://docs.triton.one/account-management/api-access/subscription-types
📖
Documentation
https://docs.triton.one/chains/solana
📖
Documentation
https://docs.triton.one/chains/solana/improved-priority-fees-api
📖
Documentation
https://docs.triton.one/chains/solana/gettransactionsforaddress
📖
Documentation
https://docs.triton.one/chains/solana/streaming
📖
Documentation
https://docs.triton.one/chains/solana/geyser
📖
Documentation
https://docs.triton.one/chains/solana/cascade
📖
Documentation
https://docs.triton.one/chains/solana/token-program
📖
Documentation
https://docs.triton.one/digital-assets-api/introduction
📖
Documentation
https://docs.triton.one/digital-assets-api/metaplex-digital-assets-api
📖
Documentation
https://docs.triton.one/digital-assets-api/fungible-assets

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/triton-one-standard-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

triton-one-standard-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Triton One Customers Accounts Standard API
  description: 'Account management REST API for Triton One. Use this API to manage accounts, subscriptions, endpoints, tokens, address watch lists, and rate tiers for your Triton RPC services. Token-based authentication via the Authorization header. Distinct from RPC consumption tokens — Customers API tokens are only used against customers.triton.one.

    '
  version: v1
  contact:
    name: Triton One Support
    url: https://triton.one
    email: support@triton.one
  license:
    name: Triton One Terms of Service
    url: https://triton.one/terms
servers:
- url: https://customers.triton.one
  description: Production Customers API
security:
- BearerAuth: []
tags:
- name: Standard
  description: Standard Solana JSON-RPC methods accepted at the same endpoint.
paths:
  /:
    post:
      summary: Solana JSON-RPC Call
      description: 'Single JSON-RPC entrypoint. Set the `method` field to one of Triton''s supported methods. See operation examples for Triton''s custom methods.

        '
      operationId: callRpc
      tags:
      - Standard
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JsonRpcRequest'
            examples:
              getRecentPrioritizationFees:
                summary: Improved priority fees with percentile
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: getRecentPrioritizationFees
                  params:
                  - []
                  - percentile: 5000
              getTransactionsForAddress:
                summary: Consolidated address history (Triton extension)
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: getTransactionsForAddress
                  params:
                  - VinesnNPRzZBnTGzzybjJM1qZmxF8aQB6FA9P2J2TYP
                  - transactionDetails: full
                    sortOrder: desc
                    limit: 100
                    commitment: finalized
                    encoding: jsonParsed
                    filters:
                      slot:
                        gte: 200000000
                      status: succeeded
                      tokenAccounts: balanceChanged
      responses:
        '200':
          description: JSON-RPC response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonRpcResponse'
components:
  schemas:
    JsonRpcResponse:
      type: object
      properties:
        jsonrpc:
          type: string
        id:
          type:
          - integer
          - string
        result: {}
        error:
          type: object
          properties:
            code:
              type: integer
            message:
              type: string
            data: {}
    JsonRpcRequest:
      type: object
      required:
      - jsonrpc
      - method
      properties:
        jsonrpc:
          type: string
          enum:
          - '2.0'
        id:
          type:
          - integer
          - string
        method:
          type: string
        params:
          type: array
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Customers API token passed in Authorization header.