> ## 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.

# Search data apps

> Marketplace search (anonymous). `owner=me` (Bearer required)
switches to the ownership view: only apps you own, including
unreleased ones, with `status`/`scope` added to each card;
`shared_with=me` (Bearer required) lists shared apps granted to you.
Without a view, `scope` is a first-class attribute dimension deciding
the candidate set: default/`public` = marketplace; `private` (Bearer
required) = my private apps; `shared` (Bearer required) = all visible
shared apps (shared by me + shared with me, both directions);
`all` = the full visible set (for anonymous callers this degrades
naturally to the marketplace). In attribute mode `status` defaults to
published and cards carry a `scope` field; in view mode
`scope`/`status` filter within the view (owner=me shows everything by
default). Default ordering: by relevance when `q` is given, otherwise
by most recent publication.



## OpenAPI

````yaml /jp/datahub/api/openapi.json get /v1/data-apps
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:
    get:
      tags:
        - Discovery
      summary: Search data apps
      description: |-
        Marketplace search (anonymous). `owner=me` (Bearer required)
        switches to the ownership view: only apps you own, including
        unreleased ones, with `status`/`scope` added to each card;
        `shared_with=me` (Bearer required) lists shared apps granted to you.
        Without a view, `scope` is a first-class attribute dimension deciding
        the candidate set: default/`public` = marketplace; `private` (Bearer
        required) = my private apps; `shared` (Bearer required) = all visible
        shared apps (shared by me + shared with me, both directions);
        `all` = the full visible set (for anonymous callers this degrades
        naturally to the marketplace). In attribute mode `status` defaults to
        published and cards carry a `scope` field; in view mode
        `scope`/`status` filter within the view (owner=me shows everything by
        default). Default ordering: by relevance when `q` is given, otherwise
        by most recent publication.
      operationId: list_data_apps_v1_data_apps_get
      parameters:
        - name: q
          in: query
          required: false
          schema:
            type: string
            default: ''
            title: Q
        - name: type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^(data|transform)$
              - type: 'null'
            title: Type
        - name: capability
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^(data-acquisition|data-processing)$
              - type: 'null'
            title: Capability
        - name: owner
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^me$
              - type: 'null'
            title: Owner
        - name: shared_with
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^me$
              - type: 'null'
            title: Shared With
        - name: scope
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^(public|private|shared|all)$
              - type: 'null'
            title: Scope
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^(draft|published|deprecated)$
              - type: 'null'
            title: Status
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 5
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataEnvelope_SearchResult_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DataEnvelope_SearchResult_:
      properties:
        data:
          $ref: '#/components/schemas/SearchResult'
      type: object
      required:
        - data
      title: DataEnvelope[SearchResult]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SearchResult:
      properties:
        items:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Items
        pagination:
          $ref: '#/components/schemas/Pagination'
        low_confidence:
          type: boolean
          title: Low Confidence
          default: false
      type: object
      required:
        - items
        - pagination
      title: SearchResult
    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
    Pagination:
      properties:
        offset:
          type: integer
          title: Offset
          default: 0
        limit:
          type: integer
          title: Limit
          default: 0
        count:
          type: integer
          title: Count
          default: 0
        total:
          type: integer
          title: Total
          default: 0
        has_more:
          type: boolean
          title: Has More
          default: false
      type: object
      title: Pagination
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: DataHub API Key

````