---
title: "Get the market pulse feed"
url: "https://developer.argaam.com/apis/news-editorial-layer-api-sandbox-v1/versions/56dc3378-a7ea-4bb0-a38f-84e9d50d974b/operations/getNewsMarketPulse"
---

> Full API specification: https://developer.argaam.com/apis/news-editorial-layer-api-sandbox-v1/versions/56dc3378-a7ea-4bb0-a38f-84e9d50d974b.md

# Get the market pulse feed

`GET` `/api/v1.1/news/market-pulse`

Operation ID: `getNewsMarketPulse`

Returns the curated short-form market pulse feed: the headline items Argaam's editorial desk considers market-moving right now, newest first. Paginated: use `page` and `pageSize`. Bound the result with the `from` and `to` date parameters. Set `lang` to `1` for English or `2` for Arabic.

## Query parameters

- `marketId` (integer, int32, optional) - Numeric market identifier (e.g. `1` = Tadawul / Saudi main market). Use `GET /api/v1.1/markets` to list valid values.
- `from` (string, optional) - Start of the date range, inclusive. Format `YYYY-MM-DD`.
- `to` (string, optional) - End of the date range, inclusive. Format `YYYY-MM-DD`.
- `lang` (string, optional) - Response language: `1` = English, `2` = Arabic. Defaults to `1`.
- `page` (integer, int32, optional) - 1-based page number. Defaults to `1`.
- `pageSize` (integer, int32, optional) - Number of records per page. Defaults to the endpoint's standard page size; large values are capped server-side.

## Responses

- `200` - Success

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: News & Editorial Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/news/market-pulse:
    get:
      tags:
        - News
      parameters:
        - name: marketId
          in: query
          schema:
            type: integer
            format: int32
            default: 3
          example: 3
          description: Numeric market identifier (e.g. `1` = Tadawul / Saudi main market).
            Use `GET /api/v1.1/markets` to list valid values.
        - name: from
          in: query
          schema:
            type: string
          example: 2024-01-01
          description: Start of the date range, inclusive. Format `YYYY-MM-DD`.
        - name: to
          in: query
          schema:
            type: string
          example: 2024-03-31
          description: End of the date range, inclusive. Format `YYYY-MM-DD`.
        - name: lang
          in: query
          schema:
            type: string
            default: ar
          example: 1
          description: "Response language: `1` = English, `2` = Arabic. Defaults to `1`."
        - name: page
          in: query
          schema:
            type: integer
            format: int32
            default: 1
          example: 1
          description: 1-based page number. Defaults to `1`.
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int32
            default: 10
          example: 20
          description: Number of records per page. Defaults to the endpoint's standard
            page size; large values are capped server-side.
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: "#/components/schemas/MarketPulses"
      summary: Get the market pulse feed
      description: >-
        Returns the curated short-form market pulse feed: the headline items
        Argaam's editorial desk considers market-moving right now, newest first.


        Paginated: use `page` and `pageSize`. Bound the result with the `from`
        and `to` date parameters. Set `lang` to `1` for English or `2` for
        Arabic.
      operationId: getNewsMarketPulse
security:
  - ApiKeyAuth: []
components:
  schemas:
    MarketPulses:
      type: object
      properties:
        articleID:
          type: integer
          format: int32
        languageID:
          type: integer
          format: int32
        title:
          type: string
          nullable: true
        body:
          type: string
          nullable: true
        source:
          type: string
          nullable: true
        isLinked:
          type: boolean
        linkedToURL:
          type: string
          nullable: true
        isLocked:
          type: boolean
        displayTime:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
