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

# 회사 공시 문서 가져오기



## OpenAPI

````yaml /ko/api-reference/openapi.json get /api/market-data/content/filings
openapi: 3.1.0
info:
  title: Financial Context
  version: 1.0.0
  description: >-
    Financial Context는 인증된 종량제 읽기 전용 미국 주식 시장 데이터 접근을 제공합니다.
    `/api/market-data/*` 엔드포인트를 사용해 `.US` 심볼과 `US` market 필터로 시세, 캔들스틱, 시장 캘린더,
    펀더멘털, 뉴스, 스크리너 및 관련 분석에 접근할 수 있습니다.
servers:
  - url: https://openapi.fcontext.com
    description: 프로덕션
security:
  - ApiKeyHeader: []
  - BearerAuth: []
tags:
  - name: 시세
    description: 시세, 캔들스틱, 거래일, 호가 깊이, 브로커 큐 및 기타 시장 데이터 엔드포인트입니다.
  - name: 콘텐츠
    description: '종목 콘텐츠: 뉴스와 토픽입니다.'
  - name: 시장
    description: 시장 상태, 거래 캘린더, 이상 거래 활동 및 순위입니다.
  - name: 캘린더
    description: 재무 이벤트 캘린더입니다.
  - name: 펀더멘털
    description: 펀더멘털, 애널리스트 평가, 밸류에이션, 주주 및 거래 공시입니다.
  - name: 스크리너
    description: 스크리닝 전략, 필터 및 지표입니다.
paths:
  /api/market-data/content/filings:
    get:
      tags:
        - 콘텐츠
      summary: 회사 공시 문서 가져오기
      parameters:
        - name: symbol
          in: query
          required: true
          schema:
            type: string
          example: AAPL.US
      responses:
        '200':
          description: 회사 공시/문서 목록
          content:
            application/json:
              schema:
                type: object
                properties:
                  filings:
                    type: array
                    items:
                      $ref: '#/components/schemas/FilingItem'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          description: 유료 Financial Context 플랜 또는 남은 데이터 요청 한도가 필요합니다.
        '403':
          description: 이 인증 정보는 Financial Context 시장 데이터 접근을 허용하지 않습니다.
components:
  schemas:
    FilingItem:
      type: object
      description: 회사 공시 또는 문서입니다.
      additionalProperties: true
      properties:
        id:
          type: string
          description: 콘텐츠 또는 파일 ID입니다.
        title:
          type: string
          description: 제목입니다.
        description:
          type: string
          description: 콘텐츠 또는 파일 설명입니다.
        fileName:
          type: string
          description: 파일 이름입니다.
        fileUrls:
          type: array
          description: 파일 다운로드 URL 목록입니다.
          items:
            type: string
            format: uri
        publishedAt:
          type: string
          format: date-time
          description: 공개 시간입니다.
    Error:
      type: object
      description: 표준 오류 응답입니다.
      additionalProperties: true
      properties:
        error:
          type: string
          description: 사람이 읽을 수 있는 오류 메시지입니다.
  responses:
    BadRequest:
      description: 요청 파라미터가 유효하지 않습니다.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Financial Context 인증 정보가 없거나 유효하지 않습니다.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: 'Unauthorized: missing API key'
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: '계정 설정에서 생성한 Financial Context key입니다. `x-api-key: <key>`로 전송하세요.'
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth access token
      description: >-
        `market_data` scope가 있는 Financial Context CLI, MCP 또는 agent 클라이언트용 OAuth
        bearer token입니다.

````