---
title: "Article body in AMP-compliant HTML."
url: "https://developer.argaam.com/apis/news-editorial-layer-api-sandbox-v1/versions/56dc3378-a7ea-4bb0-a38f-84e9d50d974b/operations/getNewsArticlesByArticleIdAmp"
---

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

# Article body in AMP-compliant HTML.

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

Operation ID: `getNewsArticlesByArticleIdAmp`

AMP (Accelerated Mobile Pages) variant for high-performance mobile rendering and SEO ranking. ### Example ``` GET /api/v1.1/news/articles/12345/amp?lang=en ```

## Path parameters

- `articleId` (integer, int32, required) - Numeric article identifier.

## Query parameters

- `lang` (string, optional) - Article language. Default: `ar`. Defaults to `ar`.

## 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}/amp:
    get:
      tags:
        - News
      parameters:
        - name: articleId
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: Numeric article identifier.
        - name: lang
          in: query
          description: "Article language. Default: `ar`. Defaults to `ar`."
          schema:
            type: string
            default: ar
          example: 1
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ArticleAMP"
      summary: Article body in AMP-compliant HTML.
      description: "AMP (Accelerated Mobile Pages) variant for high-performance\r

        mobile rendering and SEO ranking.\r

        \            \r

        ### Example\r

        ```\r

        GET /api/v1.1/news/articles/12345/amp?lang=en\r

        ```"
      operationId: getNewsArticlesByArticleIdAmp
security:
  - ApiKeyAuth: []
components:
  schemas:
    ArticleAMP:
      type: object
      properties:
        includeCSS:
          type: boolean
        ampReadyBody:
          type: string
          nullable: true
          readOnly: true
        customAMPCss:
          type: string
          nullable: true
          readOnly: true
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
