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

# 기업 뉴스 검색

> 카테고리, 위치, 키워드 등 지정된 조건에 맞는 기업 관련 뉴스 기사를 검색합니다.



## OpenAPI

````yaml ko-openapi POST /companies/news/search
openapi: 3.0.0
info:
  description: >-
    Pubrio API는 마켓 확장 인텔리전스를 제공합니다——기업의 신규 시장 진입을 포착하는 실시간 시그널과 그 기반이 되는 기업·인물
    데이터. 계정과 연락처를 검색·조회·보강하고, 200+ 시장에 걸친 유형·날짜가 있는 움직임 시그널을 구독하세요.
  version: 1.0.0
  title: Pubrio OpenAPI
  termsOfService: https://pubrio.com/ko/terms-of-service
  contact:
    email: king.lai@pubrio.com
    name: King Lai
    url: https://pubrio.com/ko/get-in-touch
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.pubrio.com
security:
  - pubrio_api_key: []
tags:
  - name: Profile
    description: 워크스페이스 프로필 정보 및 사용량 통계
  - name: Enrichment
    description: 상세한 B2B 데이터로 인물 및 기업 레코드를 보강
  - name: Lookalike
    description: 지정된 기업과 유사한 기업 검색
  - name: Search
    description: 필터를 사용하여 인물, 기업, 채용, 뉴스 및 광고 검색
  - name: Lookup
    description: 특정 인물, 기업, 채용, 뉴스, 광고 및 기술의 상세 정보 조회
  - name: LinkedIn
    description: LinkedIn 프로필 URL을 통한 인물 및 기업 데이터 조회
  - name: Redeem
    description: 크레딧을 사용하여 인물 연락처 정보 잠금 해제 (단건 및 배치)
  - name: Channels
    description: 아웃리치 채널 템플릿 관리 (생성, 수정, 삭제, 목록)
  - name: Monitor
    description: 웹훅, 통계 및 처리를 포함한 데이터 모니터 생성 및 관리
  - name: Filters
    description: 검색 매개변수에 사용 가능한 필터 값 조회 (기술, 지역, 버티컬 등)
  - name: API Keys
    description: API 키의 요청 로그 및 사용량 분석 조회
  - name: Insights
    description: 회사의 신호 집계 인사이트(채용, 뉴스, 광고).
  - name: Export
    description: 대량 데이터 내보내기(크레딧 차감).
  - name: Expansion
    description: '회사 시장 확장 인텔리전스: 신호, 단계, 시장, 내보내기.'
externalDocs:
  description: >-
    Pubrio API는 연락처와 계정 정보를 검색, 미리보기, 그리고 보강하는 데 사용됩니다. Pubrio 데이터베이스는 풍부한 B2B
    연락처 및 영업 인텔리전스 데이터를 제공합니다.
  url: https://docs.pubrio.com
paths:
  /companies/news/search:
    post:
      tags:
        - Search
      summary: 기업 뉴스 검색
      description: 카테고리, 위치, 키워드 등 지정된 조건에 맞는 기업 관련 뉴스 기사를 검색합니다.
      operationId: companies_search_news
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                locations:
                  $ref: '#/components/schemas/locations'
                company_locations:
                  $ref: '#/components/schemas/company_locations'
                companies:
                  $ref: '#/components/schemas/companies'
                domains:
                  $ref: '#/components/schemas/domains'
                linkedin_urls:
                  $ref: '#/components/schemas/company_linkedin_urls'
                search_term:
                  $ref: '#/components/schemas/search_term'
                search_terms:
                  type: array
                  items:
                    type: string
                  example:
                    - Trump
                  description: >-
                    뉴스 기사를 필터링하기 위한 키워드 문자열 배열입니다. 각 키워드는 기사 내용과 매칭됩니다. 단일 문자열에는
                    `search_term`을, 여러 키워드에는 `search_terms`를 사용하세요.
                categories:
                  $ref: '#/components/schemas/news_categories'
                news_gallery_ids:
                  $ref: '#/components/schemas/news_gallery_ids'
                published_dates:
                  $ref: '#/components/schemas/published_dates'
                per_page:
                  $ref: '#/components/schemas/per_page'
                page:
                  $ref: '#/components/schemas/page'
                news_galleries:
                  type: array
                  items:
                    type: string
                  example:
                    - electronic-commerce
                  description: >-
                    갤러리별로 뉴스를 필터링하기 위한 `gallery slug` 목록입니다. slug를 확인하려면 필터 탭의
                    `news galleries` 엔드포인트를 호출하세요.
                news_languages:
                  type: array
                  items:
                    type: string
                  example:
                    - en
                  description: >-
                    언어별로 뉴스를 필터링하기 위한 `locale_code` 값 목록입니다. 사용 가능한 코드를 확인하려면 필터
                    탭의 `news languages` 엔드포인트를 호출하세요.
                profile_id:
                  $ref: '#/components/schemas/profile_id'
                is_expansion_signal_available:
                  $ref: '#/components/schemas/is_expansion_signal_available'
                expansion_signal_types:
                  $ref: '#/components/schemas/expansion_signal_types'
                expansion_signal_polarities:
                  $ref: '#/components/schemas/expansion_signal_polarities'
      responses:
        '200':
          description: 관련 세부 정보가 포함된 성공적인 응답입니다.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/data'
              example:
                data:
                  pagination:
                    page: 1
                    per_page: 25
                    total_entries: 351800
                    total_pages: 14072
                    is_timeout: false
                  news:
                    - news_id: 0b0f1c53-7a04-4a46-b5bc-3b17a7c4cfbd
                      news_search_id: 4110b929-17cd-42aa-a159-906ead0c9b56
                      country_codes:
                        - CN
                        - SG
                      company_country_codes:
                        - CN
                        - FR
                      domains:
                        - insead.edu
                        - digitalchina.com
                      companies:
                        - logo_url: >-
                            https://buckets.pubrio.com/company-logo/MjY5OTY5NDJpbnNlYWQuZWR1bGlua2VkaW5fcF9sb2dvMTU=.jpg
                          domain_search_id: dfbe6797-5311-46f9-9518-bf1a7c3d09bc
                          country_code: FR
                          company_name: Insead
                          linkedin_name: insead
                          domain: insead.edu
                        - logo_url: >-
                            https://buckets.pubrio.com/company-logo/NDA2NTQ5NTFkaWdpdGFsY2hpbmEuY29tbGlua2VkaW5fcF9sb2dvMTU=.jpg
                          domain_search_id: e13a9e24-a07d-4630-9b47-fceb778df74e
                          country_code: CN
                          company_name: Digital China
                          linkedin_name: digital-china
                          domain: digitalchina.com
                      news_galleries:
                        - slug: banking-financial-service
                          news_gallery_id: 7c8ec9cc-66c5-4153-82da-9c8f356c6c99
                          name: Banking/Financial Service
                      locations:
                        - Singapore
                        - China
                      expansion_signals:
                        - signal_type_slug: HIRE
                          signal_subtype_slug: null
                          signal_strength_slug: confirmed
                          polarity: expansion
                          country_code: SG
                          domain_search_id: bca54309-b804-48ac-b4f7-ff4d3796570c
                          event_date: '2025-06-01T08:00:00.000Z'
                      last_modified: '2025-06-01T08:15:23.945Z'
                      image_url: null
                      url: http://enold.prnasia.com/p/asia-story-125304015-0.shtml
                      published_at: '2025-06-01T08:00:00.000Z'
                      language: id
                      source: prnasia.com
                      category: launches
                      title: >-
                        Digital China's AI-driven transformation showcased at
                        INSEAD
                      summary: >-
                        Guo Wei, Chairman of Digital China, presented on AI-era
                        corporate management at INSEAD 2025 Asia AI Conference,
                        launching a case study on Digital China's AI
                        transformation journey.
                      news_category_name: Launches
                    - ...
        '400':
          $ref: '#/components/responses/general_error'
        '429':
          $ref: '#/components/responses/rate_limit_error'
        '500':
          $ref: '#/components/responses/server_error'
components:
  schemas:
    locations:
      type: array
      items:
        type: string
      example:
        - US
        - SG
        - CN
      description: >-
        ISO 3166-1 alpha-2(cca2) 코드로 지역을 필터링하는 데 사용됩니다. 자세한 내용은 필터 탭의 `location`
        엔드포인트를 참조하세요.
    company_locations:
      type: array
      items:
        type: string
      example:
        - US
        - SG
        - CN
      description: 회사 본사 위치입니다. 자세한 내용은 필터 탭의 `location` 엔드포인트를 참고하세요.
    companies:
      type: array
      items:
        type: string
        format: uuid
      description: 회사 및 인물 조회 작업을 위한 고유 식별자(domain_search_id) 목록.
    domains:
      type: array
      items:
        type: string
      example:
        - pubrio.com
      description: >-
        회사 및 인물 조회 작업에 사용되는 회사 도메인 목록입니다. 입력된 주소가 `www.pubrio.com` 또는
        `https://docs.pubrio.com/`인 경우, 시스템은 이를 자동으로 `pubrio.com`으로 변환하여 처리합니다.
    company_linkedin_urls:
      type: array
      items:
        type: string
      example:
        - https://www.linkedin.com/company/pubrio
      description: >-
        LinkedIn 회사 페이지의 전체 URL입니다. `http`로 시작하며 `linkedin.com/company/`를 포함해야
        합니다.
    search_term:
      type: string
      example: pubrio
      description: 결과를 필터링하기 위한 키워드 문자열입니다.
    news_categories:
      type: array
      items:
        type: string
      example:
        - launches
      description: >-
        `category slugs` 목록으로, 특정 뉴스 카테고리를 검색합니다. slug를 얻으려면 필터 탭의 `news
        categories` 엔드포인트를 호출하세요.
    news_gallery_ids:
      type: array
      items:
        type: string
        format: uuid
      description: >-
        `news_gallery_id` 목록으로, 특정 뉴스 갤러리를 검색할 때 사용됩니다. ID를 얻으려면 필터 탭의 `news
        galleries` 엔드포인트를 호출하세요.
    published_dates:
      type: array
      items:
        type: string
      example:
        - '2025-01-01'
        - '2025-01-10'
      description: 발행 날짜 범위입니다. 최대값은 오늘 날짜입니다.
    per_page:
      type: integer
      example: 25
      description: 페이지당 반환할 검색 결과 수입니다. 결과 수를 제한하면 API 성능이 향상됩니다.
    page:
      type: integer
      example: 1
      description: 조회할 데이터 페이지 번호입니다.
    profile_id:
      type: integer
      description: >-
        선택 사항. 요청을 수행하는 팀 식별자입니다. API 키에 이미 워크스페이스 정보가 포함되어 있으므로 이 매개변수는 더 이상
        필수가 아닙니다. 제공되면 조회 및 사용 크레딧 추적을 위해 특정 팀(작업 공간)과 연계됩니다.


        자세한 내용은 팀 탭의 `user details` 엔드포인트를 참고하세요.
    is_expansion_signal_available:
      type: boolean
      description: >-
        When `true`, attaches the resolved expansion signals
        (`expansion_signals`) to each news item and enables the
        `expansion_signal_types` / `expansion_signal_polarities` filters. Leave
        unset for the fastest search — the expansion join is only added when
        this flag is on.
    expansion_signal_types:
      type: array
      items:
        type: string
        enum:
          - AD
          - EVENT
          - NEWS
          - DNS
          - TECH
          - INFRA
          - IP
          - PARTNER
          - EVENT_PLUS
          - REG
          - ENTITY
          - EXEC
          - OFFICE
          - HIRE
          - SCALE
          - PRODUCT
      example:
        - HIRE
        - PARTNER
      description: >-
        Return only news that produced an expansion signal of one of these types
        (uppercase slugs). Requires `is_expansion_signal_available: true`.
        Unknown slugs are ignored.
    expansion_signal_polarities:
      type: array
      items:
        type: string
        enum:
          - expansion
          - contraction_leading
          - contraction_confirming
          - contraction_lagging
      example:
        - expansion
      description: >-
        Return only news whose expansion signal carries one of these polarities.
        Requires `is_expansion_signal_available: true`. Combined with
        `expansion_signal_types` as AND.
    data:
      type: object
      nullable: true
      description: 응답 정보는 특정 API에 따라 다릅니다.
  responses:
    general_error:
      description: 잘못된 요청. 요청 형식이 올바르지 않거나 잘못된 매개변수가 포함되어 있습니다. 오류 코드와 메시지를 확인하세요.
      content:
        application/json:
          schema:
            required:
              - code
              - message
              - details
            type: object
            properties:
              code:
                example: 40001
                type: integer
              message:
                example: 오류 코드 및 메시지는 상황에 따라 다를 수 있습니다. 자세한 내용은 문서를 참조하세요.
                type: string
              details:
                type: object
    rate_limit_error:
      description: 요청 속도 제한 초과. 주어진 시간 내에 너무 많은 요청이 전송되었습니다. 속도 제한 창이 재설정된 후 다시 시도하세요.
      content:
        application/json:
          schema:
            required:
              - error
            type: object
            properties:
              error:
                example: 요청 빈도가 제한을 초과했습니다. 잠시 후 다시 시도해주세요.
                type: string
    server_error:
      description: 내부 서버 오류. 서버에서 예기치 않은 오류가 발생했습니다. 오류가 지속되면 지원팀에 문의하세요.
      content:
        application/json:
          schema:
            required:
              - error
            type: object
            properties:
              error:
                example: 요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다
                type: string
  securitySchemes:
    pubrio_api_key:
      type: apiKey
      name: pubrio-api-key
      description: >-
        API에서 수행하는 작업 및 해당 권한을 식별하는 고유한 API 토큰입니다. 이 토큰은
        [설정](https://dashboard.pubrio.com/#/settings/) 섹션에서 생성할 수 있습니다.
      in: header

````