Order Status API

This is a Server-to-Server API that takes orderid as a path parameter and returns the status of the order along with other details. For information on different order status and handling, refer herelink icon

API Latency Guideline

What is API Latency?

Time taken by the server to respond to the API request.

TP50 (s): This means 50% of the requests have a latency less than or equal to this value. It represents the typical latency most users will experience.

TP90 (s): The latency at the 90th percentile. This indicates that 90% of the requests have a latency less than or equal to this value, with 10% experiencing higher latency.

TP99 (s): The latency at the 99th percentile. This indicates that 99% of the requests have a latency less than or equal to this value, with 1% experiencing higher latency.

TP99.9 (s): The latency at the 99.9th percentile. This is important for identifying edge cases, where 0.1% of the requests take significantly longer than the others.

TP99.99 (s): The latency at the 99.99th percentile. This captures extremely rare cases, where just 0.01% of the requests take longer than this time. Monitoring this helps in identifying and addressing the rarest and most severe performance issues.

Scroll inside to view more
Transaction Percentile
Latency (ms)
TP50 (ms)
0.0198
TP90 (ms)
55.71
TP99 (ms)
351.85
TP99.9 (ms)
594.42
Warning

The recommended timeouts are based on TP99.9 data, though edge cases (0.01% of requests) may still exceed these limits and are captured in the TP99.99 data as shown below.

Scroll inside to view more
Transaction Percentile
Latency (ms)
TP99.99 (ms)
1431.42
API Endpoints
Sandbox Link
GET
https://api.sandbox.juspay.io/orders/{order_id}
Production Link
GET
https://api.juspay.io/orders/{order_id}
Authorization Header
Headers
200 : Success
400 : Invalid Input data
401 : Authentication Failed
500 : Unexpected Error
Last updated 2 years ago