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

# Community Note 만들기

> LLM 활용 사례용 커뮤니티 노트 엔드포인트를 생성합니다.



## OpenAPI

````yaml /ko/openapi.json POST /2/notes
openapi: 3.0.0
info:
  description: X API v2에서 사용 가능한 엔드포인트
  version: '2.157'
  title: X API v2
  termsOfService: https://developer.x.com/en/developer-terms/agreement-and-policy.html
  contact:
    name: X Developers
    url: https://developer.x.com/
  license:
    name: X Developer Agreement and Policy
    url: https://developer.x.com/en/developer-terms/agreement-and-policy.html
servers:
  - description: X API
    url: https://api.x.com
security: []
tags:
  - name: Account Activity
    description: AAA 구독을 조회하고 관리하는 엔드포인트입니다.
    externalDocs:
      description: 자세히 알아보기
      url: >-
        https://docs.x.com/x-api/enterprise-gnip-2.0/fundamentals/account-activity
  - name: Bookmarks
    description: 사용자 북마크를 조회하고 관리하기 위한 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/bookmarks
  - name: Compliance
    description: 시스템 내 X 데이터를 규정 준수 상태로 유지하기 위한 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: >-
        https://developer.twitter.com/en/docs/twitter-api/compliance/batch-tweet/introduction
  - name: Connections
    description: 스트리밍 연결을 위한 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.x.com/en/docs/x-api/connections
  - name: Direct Messages
    description: Direct Messages(다이렉트 메시지)를 조회하고 관리하기 위한 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/direct-messages
  - name: General
    description: 일반적인 API 기능을 위한 기타 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api
  - name: Lists
    description: 리스트를 조회하고 관리하는 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/lists
  - name: Media
    description: 미디어 관련 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.x.com
  - name: MediaUpload
    description: 미디어 업로드 관련 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.x.com
  - name: News
    description: 뉴스 스토리를 조회하는 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/news
  - name: Spaces
    description: Spaces를 조회하고 관리하는 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/spaces
  - name: Stream
    description: 스트리밍 관련 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.x.com
  - name: Tweets
    description: Tweet 조회, 검색 및 수정과 관련된 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/tweets/lookup
  - name: Users
    description: 사용자 관계 조회 및 관리를 위한 엔드포인트
    externalDocs:
      description: 자세히 알아보기
      url: https://developer.twitter.com/en/docs/twitter-api/users/lookup
paths:
  /2/notes:
    post:
      tags:
        - Community Notes
      summary: Community Note 만들기
      description: LLM 활용 사례용 커뮤니티 노트 엔드포인트를 생성합니다.
      operationId: createCommunityNotes
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateNoteRequest'
      responses:
        '200':
          description: 요청이 성공적으로 처리되었습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateNoteResponse'
        default:
          description: 요청이 실패했습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      security:
        - OAuth2UserToken:
            - tweet.write
        - UserToken: []
      externalDocs:
        url: https://communitynotes.x.com/guide/api/overview
components:
  schemas:
    CreateNoteRequest:
      type: object
      title: Note
      required:
        - test_mode
        - post_id
        - info
      properties:
        info:
          $ref: '#/components/schemas/NoteInfo'
        post_id:
          $ref: '#/components/schemas/TweetId'
        test_mode:
          type: boolean
          description: >-
            true이면 제출된 노트는 봇 기능을 테스트하기 위한 용도로만 사용되며 공개적으로 표시되지 않습니다. false이면 제출된
            노트는 제품에 대한 새로운 제안 노트가 됩니다.
      additionalProperties: false
    CreateNoteResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              $ref: '#/components/schemas/NoteId'
        errors:
          type: array
          minItems: 1
          items:
            $ref: '#/components/schemas/Problem'
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
    Problem:
      type: object
      description: >-
        IETF RFC 7807(https://tools.ietf.org/html/rfc7807)에 정의된 HTTP Problem
        Details 객체
      required:
        - type
        - title
      properties:
        detail:
          type: string
        status:
          type: integer
        title:
          type: string
        type:
          type: string
      discriminator:
        propertyName: type
        mapping:
          about:blank:
            $ref: '#/components/schemas/GenericProblem'
          https://api.twitter.com/2/problems/client-disconnected:
            $ref: '#/components/schemas/ClientDisconnectedProblem'
          https://api.twitter.com/2/problems/client-forbidden:
            $ref: '#/components/schemas/ClientForbiddenProblem'
          https://api.twitter.com/2/problems/conflict:
            $ref: '#/components/schemas/ConflictProblem'
          https://api.twitter.com/2/problems/disallowed-resource:
            $ref: '#/components/schemas/DisallowedResourceProblem'
          https://api.twitter.com/2/problems/duplicate-rules:
            $ref: '#/components/schemas/DuplicateRuleProblem'
          https://api.twitter.com/2/problems/invalid-request:
            $ref: '#/components/schemas/InvalidRequestProblem'
          https://api.twitter.com/2/problems/invalid-rules:
            $ref: '#/components/schemas/InvalidRuleProblem'
          https://api.twitter.com/2/problems/noncompliant-rules:
            $ref: '#/components/schemas/NonCompliantRulesProblem'
          https://api.twitter.com/2/problems/not-authorized-for-field:
            $ref: '#/components/schemas/FieldUnauthorizedProblem'
          https://api.twitter.com/2/problems/not-authorized-for-resource:
            $ref: '#/components/schemas/ResourceUnauthorizedProblem'
          https://api.twitter.com/2/problems/operational-disconnect:
            $ref: '#/components/schemas/OperationalDisconnectProblem'
          https://api.twitter.com/2/problems/resource-not-found:
            $ref: '#/components/schemas/ResourceNotFoundProblem'
          https://api.twitter.com/2/problems/resource-unavailable:
            $ref: '#/components/schemas/ResourceUnavailableProblem'
          https://api.twitter.com/2/problems/rule-cap:
            $ref: '#/components/schemas/RulesCapProblem'
          https://api.twitter.com/2/problems/streaming-connection:
            $ref: '#/components/schemas/ConnectionExceptionProblem'
          https://api.twitter.com/2/problems/unsupported-authentication:
            $ref: '#/components/schemas/UnsupportedAuthenticationProblem'
          https://api.twitter.com/2/problems/usage-capped:
            $ref: '#/components/schemas/UsageCapExceededProblem'
    NoteInfo:
      type: object
      description: X Community Note는 게시물에 첨부된 노트입니다.
      required:
        - text
        - classification
        - misleading_tags
        - trustworthy_sources
      properties:
        classification:
          $ref: '#/components/schemas/NoteClassification'
        misleading_tags:
          type: array
          items:
            $ref: '#/components/schemas/MisleadingTags'
        text:
          type: string
          description: Community Note의 텍스트 요약입니다.
          pattern: ^(?=[\s\S]*https?://\S+)[\s\S]+$
        trustworthy_sources:
          type: boolean
          description: 노트에서 신뢰할 수 있는 링크를 제공했는지 여부입니다.
      additionalProperties: false
    TweetId:
      type: string
      description: >-
        이 Tweet의 고유 식별자입니다. 일부 언어 및 도구에서 큰 정수를 처리하지 못해 발생하는 문제를 피하기 위해 문자열로
        반환됩니다.
      pattern: ^[0-9]{1,19}$
      example: '1346889436626259968'
    NoteId:
      type: string
      description: 이 Community Note의 고유 식별자입니다.
      pattern: ^[0-9]{1,19}$
      example: '1146654567674912769'
    GenericProblem:
      description: HTTP 상태 코드가 제공하는 정보 외에는 추가 정보가 없는 일반적인 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    ClientDisconnectedProblem:
      description: 클라이언트의 연결이 끊어졌습니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    ClientForbiddenProblem:
      description: 클라이언트가 이 요청을 보내는 것이 금지되어 있음을 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          properties:
            reason:
              type: string
              enum:
                - official-client-forbidden
                - client-not-enrolled
            registration_url:
              type: string
              format: uri
    ConflictProblem:
      description: 이미 진행 중인 작업이 있는 경우 새 작업을 생성할 수 없습니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    DisallowedResourceProblem:
      description: 요청된 리소스가 이 API의 원칙을 위반했음을 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          required:
            - resource_id
            - resource_type
            - section
          properties:
            resource_id:
              type: string
            resource_type:
              type: string
              enum:
                - user
                - tweet
                - media
                - list
                - space
            section:
              type: string
              enum:
                - data
                - includes
    DuplicateRuleProblem:
      description: 제출한 규칙이 기존 규칙과 중복됩니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          properties:
            id:
              type: string
            value:
              type: string
    InvalidRequestProblem:
      description: 이 요청이 유효하지 않음을 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          properties:
            errors:
              type: array
              minItems: 1
              items:
                type: object
                properties:
                  message:
                    type: string
                  parameters:
                    type: object
                    additionalProperties:
                      type: array
                      items:
                        type: string
    InvalidRuleProblem:
      description: 제출한 규칙이 유효하지 않습니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    NonCompliantRulesProblem:
      description: 사용자의 규칙 집합이 준수되지 않았음을 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    FieldUnauthorizedProblem:
      description: 특정 Tweet이나 사용자 등의 필드에 접근할 수 없음을 나타냅니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          required:
            - resource_type
            - field
            - section
          properties:
            field:
              type: string
            resource_type:
              type: string
              enum:
                - user
                - tweet
                - media
                - list
                - space
            section:
              type: string
              enum:
                - data
                - includes
    ResourceUnauthorizedProblem:
      description: 특정 Tweet, User 등을 조회할 수 없음을 의미하는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          required:
            - value
            - resource_id
            - resource_type
            - section
            - parameter
          properties:
            parameter:
              type: string
            resource_id:
              type: string
            resource_type:
              type: string
              enum:
                - user
                - tweet
                - media
                - list
                - space
            section:
              type: string
              enum:
                - data
                - includes
            value:
              type: string
    OperationalDisconnectProblem:
      description: 운영상의 이유로 연결이 해제되었습니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          properties:
            disconnect_type:
              type: string
              enum:
                - OperationalDisconnect
                - UpstreamOperationalDisconnect
                - ForceDisconnect
                - UpstreamUncleanDisconnect
                - SlowReader
                - InternalError
                - ClientApplicationStateDegraded
                - InvalidRules
    ResourceNotFoundProblem:
      description: 지정된 Tweet이나 사용자가 존재하지 않음을 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          required:
            - parameter
            - value
            - resource_id
            - resource_type
          properties:
            parameter:
              type: string
              minLength: 1
            resource_id:
              type: string
            resource_type:
              type: string
              enum:
                - user
                - tweet
                - media
                - list
                - space
            value:
              type: string
              description: 값은 해당 필드의 스키마를 따릅니다.
    ResourceUnavailableProblem:
      description: 특정 Tweet, User 등이 사용자에게 제공되지 않음을 의미하는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          required:
            - parameter
            - resource_id
            - resource_type
          properties:
            parameter:
              type: string
              minLength: 1
            resource_id:
              type: string
            resource_type:
              type: string
              enum:
                - user
                - tweet
                - media
                - list
                - space
    RulesCapProblem:
      description: 허용된 최대 규칙 개수를 초과했습니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    ConnectionExceptionProblem:
      description: 연결 관련 문제를 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          properties:
            connection_issue:
              type: string
              enum:
                - TooManyConnections
                - ProvisioningSubscription
                - RuleConfigurationIssue
                - RulesInvalidIssue
    UnsupportedAuthenticationProblem:
      description: 사용된 인증 방식이 지원되지 않을 때의 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
    UsageCapExceededProblem:
      description: 사용량 한도를 초과했음을 나타내는 Problem입니다.
      allOf:
        - $ref: '#/components/schemas/Problem'
        - type: object
          properties:
            period:
              type: string
              enum:
                - Daily
                - Monthly
            scope:
              type: string
              enum:
                - Account
                - Product
    NoteClassification:
      type: string
      description: Community Note의 분류 type입니다.
      enum:
        - misinformed_or_potentially_misleading
        - not_misleading
    MisleadingTags:
      type: string
      description: Community Note 오정보 태그의 type입니다.
      enum:
        - disputed_claim_as_fact
        - factual_error
        - manipulated_media
        - misinterpreted_satire
        - missing_important_context
        - other
        - outdated_information
  securitySchemes:
    OAuth2UserToken:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.x.com/2/oauth2/authorize
          tokenUrl: https://api.x.com/2/oauth2/token
          scopes:
            block.read: View accounts you have blocked.
            bookmark.read: Read your bookmarked Posts.
            bookmark.write: Create and delete your bookmarks.
            dm.read: Read all your Direct Messages.
            dm.write: Send and manage your Direct Messages.
            follows.read: View accounts you follow and accounts following you.
            follows.write: Follow and unfollow accounts on your behalf.
            like.read: View Posts you have liked and likes you can see.
            like.write: Like and unlike Posts on your behalf.
            list.read: >-
              View Lists, members, and followers of Lists you created or are a
              member of, including private Lists.
            list.write: Create and manage Lists on your behalf.
            media.write: Upload media, such as photos and videos, on your behalf.
            mute.read: View accounts you have muted.
            mute.write: Mute and unmute accounts on your behalf.
            offline.access: Request a refresh token for the app.
            space.read: View all Spaces you have access to.
            timeline.read: >-
              View all Custom Timelines you can see, including public Custom
              Timelines from other developers.
            tweet.moderate.write: Hide and unhide replies to your Posts.
            tweet.read: >-
              View all Posts you can see, including those from protected
              accounts.
            tweet.write: Post and repost on your behalf.
            users.read: View any account you can see, including protected accounts.
    UserToken:
      type: http
      scheme: OAuth

````