Skip to main content
GET
/
market-data
/
markets
/
{code}
/
movers
Get market movers
curl --request GET \
  --url https://api.bluumfinance.com/v1/market-data/markets/{code}/movers \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "list",
  "url": "/v1/investors/inv_…/deposits",
  "has_more": false,
  "data": [
    {
      "object": "investor",
      "livemode": false,
      "symbol": "<string>",
      "price": 123,
      "change": 123,
      "change_percent": 123,
      "currency": "<string>",
      "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
      "created": 1747776000,
      "metadata": {},
      "name": "<string>",
      "exchange": "<string>",
      "volume": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

code
string
required

Query Parameters

direction
enum<string>
default:gainers
Available options:
gainers,
losers,
actives
limit
integer
Required range: 1 <= x <= 50

Response

List of movers

List envelope. data holds the page of items; each item is itself wrapped in a ResourceEnvelope.

object
enum<string>
required
Available options:
list
url
string
required

The endpoint path that produced this list.

Example:

"/v1/investors/inv_…/deposits"

has_more
boolean
required

Whether more results exist beyond data.

Example:

false

data
object[]
required