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

# getNftEditions

> Solana NFTのマスターエディションのすべてのエディションとプリントを、エディション番号とメタデータを含めて取得し、ページネーションサポートあり

## リクエストパラメータ

<ParamField body="mint" type="string" required>
  すべてのエディションを取得するSolanaマスターエディションNFTのミントアドレス。
</ParamField>

<ParamField body="page" type="number">
  Solana NFTエディションの結果をページネーションするためのページ番号。
</ParamField>

<ParamField body="limit" type="number">
  1つのリクエストで返すSolana NFTエディションの最大数。
</ParamField>


## OpenAPI

````yaml ja/openapi/das-api/getNftEditions.yaml POST /
openapi: 3.1.0
info:
  title: Solana NFT Edition Tracking API
  version: 1.0.0
  description: >
    Solanaブロックチェーン上のマスターエディションから限定版NFTを追跡および取得するための高度なSolanaデジタル資産標準（DAS）APIです。この専門的なAPIは、エディションベースのNFTコレクションに包括的な可視性を提供し、アプリケーションがエディション番号を検証し、プリント配布を追跡し、ミンティングの進捗を監視し、Solana上の単一のマスターアートワークから派生したすべてのNFTプリントを取得できるようにします。
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: メインネットRPCエンドポイント
  - url: https://devnet.helius-rpc.com
    description: Devnet RPCエンドポイント
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getNftEditions
      description: >
        Solanaブロックチェーン上のマスターNFTから作成されたすべての限定版プリントを取得します。この専門的なエディショントラッキングAPIは、特定のマスターエディションからミントされたすべての個別NFTエディションの完全なリストを、ユニークなミントアドレス、エディション番号、現在の供給情報と共に返します。限定版アートワークを管理するNFTプラットフォーム、エディションの希少性を追跡するコレクター、Solana
        NFTエコシステム内で正規のプリントを確認するマーケットプレイスにとって不可欠です。
      operationId: rpc
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - id
                - method
                - params
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  description: JSON-RPCプロトコルのバージョン。
                  default: '2.0'
                id:
                  type: string
                  description: リクエストを識別するためのID。
                  example: '1'
                  default: '1'
                method:
                  type: string
                  enum:
                    - getNftEditions
                  description: 呼び出すDASメソッドの名前。
                  default: getNftEditions
                params:
                  type: object
                  default:
                    mint: Ey2Qb8kLctbchQsMnhZs5DjY32To2QtPuXNwWvk4NosL
                  properties:
                    mint:
                      type: string
                      description: すべてのエディションを取得するSolanaマスターエディションNFTのミントアドレス。
                      example: Ey2Qb8kLctbchQsMnhZs5DjY32To2QtPuXNwWvk4NosL
                    page:
                      type: integer
                      description: Solana NFTエディションの結果をページ区切りで取得するためのページ番号。
                      example: 1
                    limit:
                      type: integer
                      description: 1回のリクエストで返すSolana NFTエディションの最大数。
                      example: 100
                  required:
                    - mint
      responses:
        '200':
          description: 成功したレスポンス
          content:
            application/json:
              schema:
                type: object
                properties:
                  last_indexed_slot:
                    type: integer
                    description: このスロットまでのすべてのデータがインデックス化されたことが保証されています。
                    example: 365750752
                  total:
                    type: integer
                    description: このマスターエディションからミントされた限定版Solana NFTの総数。
                    example: 1
                  limit:
                    type: integer
                    description: リクエストされたNFTエディションの最大数。
                    example: 1
                  page:
                    type: integer
                    description: 現在の結果のページ。
                    example: 1
                  master_edition_address:
                    type: string
                    description: プリントエディションを管理するマスターエディションNFTのSolanaブロックチェーンアドレス。
                    example: 8SHfqzJYABeGfiG1apwiEYt6TvfGQiL1pdwEjvTKsyiZ
                  supply:
                    type: integer
                    description: このマスターエディションからミントされたSolana NFTエディションの現在の供給量。
                    example: 61
                  max_supply:
                    type: integer
                    description: このマスターからミントできる最大のSolana NFTエディションの供給量。
                    example: 69
                  editions:
                    type: array
                    description: このマスターエディションからミントされた個別のSolana NFTエディションの配列。
                    items:
                      type: object
                      properties:
                        mint:
                          type: string
                          description: この個々のSolana NFTエディションのユニークなミントアドレス。
                          example: GJvFDcBWf6aDncd1TBzx2ou1rgLFYaMBdbYLBa9oTAEw
                        edition_address:
                          type: string
                          description: このNFTのエディションアカウントのSolanaブロックチェーンアドレス。
                        edition:
                          type: integer
                          description: このSolana NFTのプリントシリーズにおける連続エディション番号。
                        burnt: false
        '400':
          description: 不正なリクエスト。サーバーは無効な構文のためリクエストを理解できませんでした。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  error:
                    type: object
                    properties:
                      code:
                        type: integer
                        example: -32602
                      message:
                        type: string
                        example: 無効なリクエストパラメータです。
                  id:
                    type: string
                    example: '1'
        '401':
          description: 認証されていません。クライアントは要求された応答を取得するために自身を認証する必要があります。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  error:
                    type: object
                    properties:
                      code:
                        type: integer
                        example: -32001
                      message:
                        type: string
                        example: 認証に失敗しました。APIキーが存在しないか無効です。
                  id:
                    type: string
                    example: '1'
        '403':
          description: 禁止されています。クライアントはコンテンツへのアクセス権を持っていません。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  error:
                    type: object
                    properties:
                      code:
                        type: integer
                        example: -32003
                      message:
                        type: string
                        example: このリソースにアクセスする権限がありません。
                  id:
                    type: string
                    example: '1'
        '404':
          description: 見つかりません。サーバーは要求されたリソースを見つけることができません。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  error:
                    type: object
                    properties:
                      code:
                        type: integer
                        example: -32004
                      message:
                        type: string
                        example: 指定されたミントアドレスに対してNFTエディションが見つかりません。
                  id:
                    type: string
                    example: '1'
        '429':
          description: リクエストが多すぎます。ユーザーがある一定期間に多数のリクエストを送信しました。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  error:
                    type: object
                    properties:
                      code:
                        type: integer
                        example: -32029
                      message:
                        type: string
                        example: レート制限を超えました。後でもう一度やり直してください。
                  id:
                    type: string
                    example: '1'
        '500':
          description: 内部サーバーエラー。サーバーは扱い方がわからない状況に遭遇しました。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  error:
                    type: object
                    properties:
                      code:
                        type: integer
                        example: -32000
                      message:
                        type: string
                        example: サーバーで予期しないエラーが発生しました。
                  id:
                    type: string
                    example: '1'
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        Helius
        APIキーです。[ダッシュボード](https://dashboard.helius.dev/api-keys)で無料で取得できます。

````