> ## 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.

# getAssetsByCreator

> 特定のクリエイターアドレスによって作成されたすべてのSolana NFTと圧縮NFTを、オプションの検証済みのみのフィルタリングを使って取得します

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

<ParamField body="creatorAddress" type="string" required>
  すべてのデジタル資産を取得するためのクリエイターのSolanaウォレットアドレス。
</ParamField>

<ParamField body="page" type="number">
  返される結果のページ。
</ParamField>

<ParamField body="limit" type="number">
  返される資産の最大数。
</ParamField>

<ParamField body="sortBy" type="object">
  応答の並べ替えオプション。
</ParamField>

<ParamField body="sortBy.sortBy" type="string">
  取得されたSolana資産が応答で並べ替えられる基準。

  * `created`
  * `recent_action`
  * `updated`
  * `none`
</ParamField>

<ParamField body="sortBy.sortDirection" type="string">
  取得されたSolana資産が応答で並べ替えられる方向。

  * `asc`
  * `desc`
</ParamField>

<ParamField body="before" type="string">
  資産を後方へページングするためのカーソル。
</ParamField>

<ParamField body="after" type="string">
  資産を前方へページングするためのカーソル。
</ParamField>

<ParamField body="options" type="object">
  応答の表示オプション。
</ParamField>

<ParamField body="options.showUnverifiedCollections" type="boolean" default="false">
  検証されていないコレクションをスキップする代わりに、それらのグループ情報を表示します。
</ParamField>

<ParamField body="options.showCollectionMetadata" type="boolean" default="false">
  コレクションのメタデータを表示します。
</ParamField>

<ParamField body="options.showGrandTotal" type="boolean" default="false">
  クエリに一致した資産の総数を表示します。これによりリクエストは遅くなります。
</ParamField>


## OpenAPI

````yaml ja/openapi/das-api/getAssetsByCreator.yaml POST /
openapi: 3.1.0
info:
  title: Solana Creator Attribution API
  version: 1.0.0
  description: >-
    特定のアーティスト、プロジェクト、またはクリエイターアドレスによって作成されたすべてのデジタル資産をSolanaブロックチェーン上で取得するための高度なSolanaデジタルアセット標準（DAS）API。この専門APIは、従来のNFTおよび圧縮された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: getAssetsByCreator
      description: >-
        特定のウォレットアドレスによって作成されたすべてのSolanaデジタル資産の包括的なリストを取得します。このクリエイターアトリビューションAPIは、指定されたアドレスがクリエイターとしてリストされている場合に、検証ステータスを含む完全なNFTコレクション、アートワーク、トークン、その他の資産を返します。アーティストポートフォリオ、クリエイターロイヤルティ追跡、マーケットプレイスのアトリビューション、Solanaエコシステム全体のコレクション発見に不可欠です。
      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。
                  default: '1'
                method:
                  type: string
                  enum:
                    - getAssetsByCreator
                  description: 呼び出すDASメソッドの名前。
                  default: getAssetsByCreator
                params:
                  type: object
                  default:
                    creatorAddress: D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3
                  properties:
                    creatorAddress:
                      type: string
                      description: すべてのデジタル資産を取得するクリエイターのSolanaウォレットアドレス。
                      example: D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3
                    page:
                      type: integer
                      description: 返す結果のページ。
                      example: 1
                    limit:
                      type: integer
                      description: 返す資産の最大数。
                      example: 100
                    sortBy:
                      type: object
                      description: レスポンスのソートオプション。
                      properties:
                        sortBy:
                          type: string
                          description: レスポンスで取得されたSolana資産をソートする基準。
                          enum:
                            - created
                            - recent_action
                            - updated
                            - none
                        sortDirection:
                          type: string
                          description: レスポンスで取得されたSolana資産をソートする方向。
                          enum:
                            - asc
                            - desc
                    before:
                      type: string
                      description: 資産を後ろ向きにページネーションするためのカーソル。
                      example: string
                    after:
                      type: string
                      description: 資産を前向きにページネーションするためのカーソル。
                      example: string
                    options:
                      type: object
                      description: レスポンスの表示オプション。
                      properties:
                        showUnverifiedCollections:
                          type: boolean
                          description: 未検証のコレクションについてグループ情報をスキップせずに表示。
                          default: false
                        showCollectionMetadata:
                          type: boolean
                          description: コレクションのメタデータを表示。
                          default: false
                        showGrandTotal:
                          type: boolean
                          description: クエリに一致した資産の総数を表示します。これによりリクエストが遅くなります。
                          default: false
                  required:
                    - creatorAddress
      responses:
        '200':
          description: 成功したレスポンス
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    example: '2.0'
                  result:
                    type: object
                    properties:
                      last_indexed_slot:
                        type: integer
                        description: このスロットまでのすべてのデータがインデックス化されたことが保証されます。
                        example: 365750752
                      total:
                        type: integer
                        description: このアドレスによって作成されたSolanaデジタル資産の総数。
                        example: 1
                      limit:
                        type: integer
                        description: 要求された資産の最大数。
                        example: 1
                      page:
                        type: integer
                        description: 現在の結果のページ。
                        example: 1
                      items:
                        type: array
                        description: 資産の配列。
                        items:
                          type: object
                          properties:
                            interface:
                              type: string
                              description: デジタル資産のSolanaトークン標準インターフェイスタイプ。
                              enum:
                                - V1_NFT
                                - V1_PRINT
                                - LEGACY_NFT
                                - V2_NFT
                                - FungibleAsset
                                - FungibleToken
                                - Custom
                                - Identity
                                - Executable
                                - ProgrammableNFT
                                - MplCoreAsset
                                - MplBubblegumV2
                                - MplCoreCollection
                                - MplCoreGroup
                              example: Custom
                            is_agent:
                              type: boolean
                              description: >-
                                この資産がエージェント・アイデンティティ（MPL Core
                                AgentIdentity外部プラグイン）を持っているかどうか。falseの場合は省略されます。
                            agent_token:
                              type: string
                              description: >-
                                Agent
                                RegistryプログラムからのBase58符号化されたエージェントトークンミント。登録されていない場合は省略されます。
                            asset_signer:
                              type: string
                              description: >-
                                MPL
                                Core用のBase58符号化されたアセット・シグナーPDA。該当しない場合は省略されます。
                            plugins:
                              type: object
                              description: MPL Coreプラグイン、オプションのMIP-11 `groups`メンバーシップを含む。
                              additionalProperties: true
                            id:
                              type: string
                              description: Solanaデジタル資産の一意のミントアドレス識別子。
                              example: JEH7cJxAKdprFG5AvdsY2c4ZqojxLBjFmw19zADV6oK5
                            content:
                              type: object
                              description: URI、画像、属性を含むSolanaデジタル資産のコンテンツとメタデータ。
                            authorities:
                              type: array
                              items:
                                type: object
                              description: メタデータの変更のためにSolanaデジタル資産に関連付けられた更新オーソリティ。
                            compression:
                              type: object
                              description: >-
                                Solana資産のための状態圧縮の詳細。費用対効果の高いストレージを使用しているかどうかを示します。
                            grouping:
                              type: array
                              items:
                                type: object
                              description: 検証済みコレクションにSolana NFTを整理するためのコレクショングループの詳細。
                            royalty:
                              type: object
                              description: このデジタル資産のSolanaマーケットプレイスセールのためのクリエイターロイヤルティ設定。
                            creators:
                              type: array
                              items:
                                type: object
                              description: このSolanaデジタル資産のための検証済みクリエイターアドレスとシェア割り当て。
                            ownership:
                              type: object
                              description: このSolanaデジタル資産の現在の所有権の詳細。所有者のアドレスと委任状況を含む。
        '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: 指定されたクリエイターの資産が見つかりません。
                  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)。

````