---
title: "Available article type taxonomies."
url: "https://developer.argaam.com/apis/news-editorial-layer-api-sandbox-v1/versions/56dc3378-a7ea-4bb0-a38f-84e9d50d974b/operations/getNewsArticleTypes"
---

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

# Available article type taxonomies.

`GET` `/api/v1.1/news/article-types`

Operation ID: `getNewsArticleTypes`

Article types group editorial content into broad categories (news, analysis, press release, etc.). Use to build filter UIs.

## 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/article-types:
    get:
      tags:
        - News
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: "#/components/schemas/ArticleType"
      summary: Available article type taxonomies.
      description: "Article types group editorial content into broad categories\r

        (news, analysis, press release, etc.). Use to build filter UIs."
      operationId: getNewsArticleTypes
      parameters: []
security:
  - ApiKeyAuth: []
components:
  schemas:
    ArticleType:
      type: object
      properties:
        articleTypeID:
          type: integer
          format: int32
        nameAr:
          type: string
          nullable: true
        nameEn:
          type: string
          nullable: true
        argaamID:
          type: integer
          format: int32
          nullable: true
        usedInChart:
          type: boolean
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
