---
title: "Get a article by articleId"
url: "https://developer.argaam.com/apis/news-editorial-layer-api-sandbox-v1/versions/56dc3378-a7ea-4bb0-a38f-84e9d50d974b/operations/getNewsArticlesByArticleId"
---

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

# Get a article by articleId

`GET` `/api/v1.1/news/articles/{articleId}`

Operation ID: `getNewsArticlesByArticleId`

Returns the article identified by `articleId`. Set `lang` to `1` for English or `2` for Arabic.

## Path parameters

- `articleId` (integer, int32, required) - Identifier of the news article.

## Query parameters

- `lang` (string, optional) - Response language: `1` = English, `2` = Arabic. Defaults to `1`.
- `styled` (boolean, optional) - When `true`, returns values pre-formatted for display (thousands separators, currency suffixes) instead of raw numbers. Defaults to `True`.

## 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/articles/{articleId}:
    get:
      tags:
        - News
      parameters:
        - name: articleId
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: Identifier of the news article.
        - name: lang
          in: query
          schema:
            type: string
            default: ar
          example: 1
          description: "Response language: `1` = English, `2` = Arabic. Defaults to `1`."
        - name: styled
          in: query
          schema:
            type: boolean
            default: true
          example: true
          description: When `true`, returns values pre-formatted for display (thousands
            separators, currency suffixes) instead of raw numbers. Defaults to
            `True`.
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ArticleDetails"
      summary: Get a article by articleId
      description: |-
        Returns the article identified by `articleId`.

        Set `lang` to `1` for English or `2` for Arabic.
      operationId: getNewsArticlesByArticleId
security:
  - ApiKeyAuth: []
components:
  schemas:
    ArticleDetails:
      type: object
      properties:
        articleID:
          type: integer
          format: int32
        languageID:
          type: integer
          format: int32
        language:
          type: string
          nullable: true
          readOnly: true
        title:
          type: string
          nullable: true
        body:
          type: string
          nullable: true
        shortURL:
          type: string
          nullable: true
        publishedOn:
          type: string
          nullable: true
        articleSourceName:
          type: string
          nullable: true
        articleType:
          type: string
          nullable: true
          readOnly: true
        articleTypeNameAr:
          type: string
          nullable: true
        articleTypeNameEn:
          type: string
          nullable: true
        marketTickerIDs:
          type: string
          nullable: true
        marketTickerChartIDs:
          type: array
          items:
            type: string
          nullable: true
          readOnly: true
        companyTickerIDs:
          type: string
          nullable: true
        companyTickerChartIDs:
          type: array
          items:
            type: string
          nullable: true
          readOnly: true
        customAMPCss:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
