> ## Documentation Index
> Fetch the complete documentation index at: https://www.octoparse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List an app's translation locales

> Which locales carry a translation overlay, with origin
(author / platform) and the Release version each was based on.
Same visibility as detail. `view=owner` switches to the owner
resolver (non-owners and unknown refs are 404, never a public
fallback) and adds `stale` / `stale_paths`: whether the translatable
source of the **latest Release** (the workspace for zero-Release
apps) has changed since the translation was saved, and which paths
— hints for the author, with no effect on how consumers overlay.



## OpenAPI

````yaml /jp/datahub/api/openapi.json get /v1/data-apps/{app_id}/translations
openapi: 3.1.0
info:
  title: DataHub API
  version: 0.2.0
  description: Public /v1 contract of Octoparse DataHub. Internal channels are excluded.
servers:
  - url: https://api-datahub.octoparse.com
security:
  - bearerAuth: []
tags:
  - name: Discovery
    description: >-
      Anonymous access: platform metadata (currency), data app search, detail
      and input contract, machine-readable manifest spec.
  - name: Publishing
    description: >-
      Self-service publishing channel (API Key auth), two-phase: validate first
      (validate / package, nothing persisted), then publish (POST /data-apps,
      the submission goes live as a new Release). api kind (declarative
      integration) becomes visible on publish; code kind (code package) returns
      202 and enters an async image build; once ready it is promoted to a
      Release, visible and runnable. Poll progress via GET
      /data-apps/{ref}/builds.
  - name: Runs & Results
    description: >-
      Start / query / cancel runs and read result records with pagination.
      Business inputs go in the request body; platform run options (wait,
      max_records) go in query parameters.
  - name: Datasets
    description: >-
      Metadata and record access for platform datasets (including seeded stock
      data).
  - name: Account
    description: Account info and cumulative usage for the current API Key.
  - name: Secrets
    description: >-
      CRUD for upstream credentials (environment entries referenced by manifest
      `runtime.env`). Plaintext is write-only: every read returns a mask.
paths:
  /v1/data-apps/{app_id}/translations:
    get:
      tags:
        - Discovery
      summary: List an app's translation locales
      description: |-
        Which locales carry a translation overlay, with origin
        (author / platform) and the Release version each was based on.
        Same visibility as detail. `view=owner` switches to the owner
        resolver (non-owners and unknown refs are 404, never a public
        fallback) and adds `stale` / `stale_paths`: whether the translatable
        source of the **latest Release** (the workspace for zero-Release
        apps) has changed since the translation was saved, and which paths
        — hints for the author, with no effect on how consumers overlay.
      operationId: list_app_translations_v1_data_apps__app_id__translations_get
      parameters:
        - name: app_id
          in: path
          required: true
          schema:
            type: string
            title: App Id
        - name: view
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^owner$
              - type: 'null'
            title: View
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataEnvelope_TranslationList_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DataEnvelope_TranslationList_:
      properties:
        data:
          $ref: '#/components/schemas/TranslationList'
      type: object
      required:
        - data
      title: DataEnvelope[TranslationList]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TranslationList:
      properties:
        source_locale:
          type: string
          title: Source Locale
        items:
          items:
            $ref: '#/components/schemas/TranslationMeta'
          type: array
          title: Items
      type: object
      required:
        - source_locale
      title: TranslationList
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    TranslationMeta:
      properties:
        locale:
          type: string
          title: Locale
        origin:
          type: string
          enum:
            - author
            - platform
          title: Origin
        based_on_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Based On Version
        updated_at:
          type: string
          title: Updated At
        stale:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Stale
        stale_paths:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Stale Paths
      type: object
      required:
        - locale
        - origin
        - updated_at
      title: TranslationMeta
      description: |-
        One locale of an app's translations (no entries). `stale` /
        `stale_paths` appear only in the owner view (`?view=owner`) and the
        platform channel: they compare the translation's recorded source hashes
        against the **latest Release** (against the workspace for zero-Release
        apps) and are hints only — stale translations still overlay normally.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: DataHub API Key

````