Router Endpoints

Overview

The Router Endpoints panel is the central place to retrieve your base Router URL, used to send all Quickscope routing-related API calls such as quotes, swaps, bundles, and metadata lookups.

Each Squad or project is issued a unique endpoint, helping to isolate usage, API key scopes, and rate limits.


API URL

Your Router base URL is generated per project and can be copied directly from the dashboard.

https://{region}.router.quickscope.so/api/v1

This URL supports all Router operations, including quote generation and transaction execution. Use the copy-to-clipboard button for quick integration into your app or service.


Usage Notes

Your endpoint supports the following calls:

  • GET /info/providers
    Returns supported liquidity providers. URL: https://frankfurt.router.quickscope.so/api/v1/info/providers
  • POST /info/mint
    Gets metadata for token mints. URL: https://frankfurt.router.quickscope.so/api/v1/info/mint
  • POST /info/pools
    Lists eligible pools for a given pair. URL: https://frankfurt.router.quickscope.so/api/v1/info/pools
  • POST /quote/all
    Returns all possible route results without filtering. URL: https://frankfurt.router.quickscope.so/api/v1/quote/all
  • POST /quote/best
    Returns the best price for a token pair. URL: https://frankfurt.router.quickscope.so/api/v1/quote/best
  • POST /quote/custom
    Shows all available routes with optional filters. URL: https://frankfurt.router.quickscope.so/api/v1/quote/custom
  • POST /swap/best
    Builds a transaction from the best route. URL: https://frankfurt.router.quickscope.so/api/v1/swap/best
  • POST /swap/custom
    Builds a transaction with a specific provider or pool. URL: https://frankfurt.router.quickscope.so/api/v1/swap/custom

All requests require an x-api-key header and will respect any domain or IP whitelisting configured in the dashboard.


Notes

  • This Router endpoint is not for JSON-RPC or raw Solana queries
  • All rate limits, access controls, and keys are managed via the API Key tab
  • Endpoint is global and auto-routes based on infrastructure location

What’s Next