> ## Documentation Index
> Fetch the complete documentation index at: https://developers.octaviatech.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Article by ID and Language

> Get Article by ID and Language.



## OpenAPI

````yaml GET /articles/getByIdByLanguage/{id}
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags: []
paths:
  /articles/getByIdByLanguage/{id}:
    get:
      tags:
        - Articles
      summary: Get article by id with multilingual fields (public)
      description: >-
        Returns article with multilingual fields (e.g., en/es) for localized
        rendering.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
            pattern: ^[a-fA-F0-9]{24}$
            example: '{{objectId}}'
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: OK
                data:
                  id: '{{objectId}}'
                  mainTitle:
                    en: Droopy Nose
                    es: Nariz caída
                  summary:
                    en: Short summary
                    es: Resumen breve
                  body:
                    en: <p>HTML</p>
                    es: <p>HTML</p>
        '404':
          description: Not found
          content:
            application/json:
              example:
                success: false
                statusCode: 404
                message: Not found
                data: null
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````