epsm-api
  1. Overview
epsm-api
  • Overview
    • Getting Started
    • Authentication
    • Response Compression
    • Pagination
  • Dark Shorts
    • rest_v1_dark_shorts_ticker_GET
      GET
  • Powerdays
    • rest_v1_powerday_daily_reports_ticker_GET
      GET
  • Relative Market Rank
    • rest_v1_rmr_ticker_GET
      GET
  • Timing Momentum
    • timing_momentum_ticker_GET
      GET
  • Trend Indicator
    • rest_v1_trend_indicator_daily_reports_ticker_GET
      GET
  • Volatility Strength
    • rest_v1_volatility_strength_reports_ticker_GET
      GET
  • PEAD
    • rest_v1_pead_current_ticker_type_GET
      GET
  • Schemas
    • ChartPrice
    • Pead
  1. Overview

Pagination

The API uses offset-based pagination to control how many items are returned in responses that contain collections. Pagination is enabled using the query string parameter pagination in format pageLimit,offset.

Default values#

pageLimit - 1000
offset - 0
Request
Equivalent to:

Examples#

First Page (Offset Defaults to 0)#

Equivalent to:

Explicit Offset#

Next Page#

Behavior#

Pagination applies to all endpoints that return collections
The server returns up to pageLimit items
Results start from the given offset
If the total number of items is smaller than pageLimit, fewer items are returned
Invalid pagination values may result in a 400 Bad Request

Notes and best practices#

The order of returned results is defined by the endpoint’s default sorting
Very large pageLimit values may be restricted by the server
Offset-based pagination may return different results if data changes between requests
Use reasonable page sizes to improve performance and response times
Modified at 2025-12-16 17:40:17
Previous
Response Compression
Next
Dark Shorts
Built with