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

# EDINET Document List

> Query EDINET filing documents by filing date through AIsa.



## OpenAPI

````yaml openapi/edinet.json GET /edinet/documents.json
openapi: 3.1.0
info:
  title: EDINET API
  version: draft-2026-07-28
  description: AIsa gateway endpoints for EDINET document list and document download.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /edinet/documents.json:
    get:
      tags:
        - EDINET
      summary: List EDINET documents
      description: >-
        Query the EDINET filing list for a given file date. Returns metadata
        only when type=1, or metadata plus filing results when type=2.
      operationId: getEdinetDocuments
      parameters:
        - name: date
          in: query
          required: true
          schema:
            type: string
            format: date
            examples:
              - '2026-07-23'
          description: File date in YYYY-MM-DD format.
        - name: type
          in: query
          required: false
          schema:
            type: integer
            enum:
              - 1
              - 2
            default: 1
          description: 'Response mode: 1 for metadata only, 2 for metadata plus filing list.'
      responses:
        '200':
          description: EDINET document-list response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    type: object
                    description: >-
                      Metadata object with title, request parameter echo, result
                      count, processDateTime, status, and message.
                  results:
                    type: array
                    description: Filing document objects when type=2.
                    items:
                      type: object
                      properties:
                        seqNumber:
                          type: integer
                        docID:
                          type: string
                        filerName:
                          type: string
                        docTypeCode:
                          type: string
                        submitDateTime:
                          type: string
        '400':
          description: Invalid request parameters.
        '401':
          description: Invalid or missing AIsa API key.
        '429':
          description: Rate limit exceeded.
        '500':
          description: Gateway or upstream failure.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````