uniquePID
parameter in the body of each API request:
Tier | Requests Per Second (RPS) | Burst Capacity | Use Case |
---|---|---|---|
Basic | 3 | 3 | Ideal for initial development, proof of concept projects, testing and small scale application with infrequent API calls |
Growth | 10 | 30 | Suitable for mid sized production application, services and applications with moderate user traffic |
Premium | 20 | 50 | Designed for large scale production applications, real time trading interfaces and platforms requiring consistent high throughput |
Enterprise | Custom | Custom | Tailored solutions for high volume exchanges, large scale aggregators, institutional trading desks and partners with unique infrastructure requirements |
/v1/quote
. The /v1/quote
endpoint performs intensive onchain simulations, which are
resource heavy
Conversely, the /v1/price
endpoint is designed to be lightweight and highly performant for frequent polling. It provides rapid price estimates without deep onchain simulation
Best Practice:
/v1/price
should be the primary endpoint used in your application
for displaying real time indicative prices and general market information/v1/quote
should be called only when a user is ready to execute a
swap and requires precise, executable transaction data.gluex.xyz
)x-api-key
header is included with valid API key/v1/price
for frequent polling instead of /v1/quote