{
  "openapi": "3.0.0",
  "info": {
    "title": "Metaplex Digital Asset API (DAS) for Solana API",
    "description": "Unlock the Power of Digital Assets on Solana with our robust suite of RPC methods to query and fetch standard NFTs, compressed NFTs, MPL Core assets, Token 2022 assets, token accounts, and more.",
    "version": "1.0.0",
    "contact": {
      "email": "support@quicknode.com",
      "url": "https://support.quicknode.com/"
    }
  },
  "servers": [
    {
      "url": "https://{quicknode_endpoint}",
      "description": "Your Quicknode endpoint",
      "variables": {
        "quicknode_endpoint": {
          "default": "your-endpoint.quiknode.pro",
          "description": "Your Quicknode endpoint URL"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "JSON-RPC",
      "description": "See request body examples for the available methods you can call on this add-on"
    }
  ],
  "paths": {
    "/rpc": {
      "post": {
        "summary": "JSON-RPC methods for qn://das-infra/rpc",
        "description": "Available methods:\n• getAssetsByCreator: Returns the list of assets given a creator address.\n• getAssetsByAuthority: Returns the list of assets given an authority address.\n• searchAssets: Returns the list of assets given search criteria.\n• getTokenAccounts: Retrieve all the token accounts associated with a specific mint or owner account.\n• getNftEditions: Retrieve details of edition NFTs of a specified master NFT\n• getAssetSignatures: List transactions signatures for a specified compressed asset\n• getAssetsByGroup: Return the list of assets given a group (key, value) pair.\n• getAssets: Returns the metadata information of compressed/standard assets.\n• getAsset: Returns the metadata information of a compressed/standard asset.\n• getAssetProofs: Returns the merkle tree proof information for compressed assets.\n• getAssetProof: Returns the merkle tree proof information for a compressed asset.\n• getAssetsByOwner: Returns the list of assets given an owner address.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetsByCreator"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "creatorAddress": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA",
                          "limit": 100,
                          "page": 1
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetsByAuthority"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "authorityAddress": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2",
                          "limit": 10,
                          "page": 1
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "searchAssets"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "ownerAddress": "N4f6zftYsuu4yT7icsjLwh4i6pB1zvvKbseHj2NmSQw",
                          "limit": 1,
                          "page": 1
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getTokenAccounts"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": []
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getNftEditions"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": []
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetSignatures"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": []
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetsByGroup"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "groupKey": "collection",
                          "groupValue": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac",
                          "limit": 1000,
                          "page": 1
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssets"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "ids": [
                            "9ARngHhVaCtH5JFieRdSS5Y8cdZk2TMF4tfGSWFB9iSK",
                            "F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk"
                          ]
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAsset"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "id": "F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk"
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetProofs"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "ids": [
                            "F4cpdgYC6fH5nFipXWN8BksYJqf3rDCUymoCArj6DgTg",
                            "7NyFs3hmQjqJkp88mUMuKTWuMxhhPMbfpb948qn7JxWH"
                          ]
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetProof"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "id": "F4cpdgYC6fH5nFipXWN8BksYJqf3rDCUymoCArj6DgTg"
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "getAssetsByOwner"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "object",
                        "description": "Named parameters",
                        "example": {
                          "ownerAddress": "E645TckHQnDcavVv92Etc6xSWQaq8zzPtPRGBheviRAk",
                          "limit": 10,
                          "page": 1
                        }
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  }
                ],
                "discriminator": {
                  "propertyName": "method"
                }
              },
              "examples": {
                "getAssetsByCreator": {
                  "summary": "Returns the list of assets given a creator address.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetsByCreator",
                    "id": 1,
                    "params": {
                      "creatorAddress": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA",
                      "limit": 100,
                      "page": 1
                    }
                  }
                },
                "getAssetsByAuthority": {
                  "summary": "Returns the list of assets given an authority address.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetsByAuthority",
                    "id": 1,
                    "params": {
                      "authorityAddress": "mdaoxg4DVGptU4WSpzGyVpK3zqsgn7Qzx5XNgWTcEA2",
                      "limit": 10,
                      "page": 1
                    }
                  }
                },
                "searchAssets": {
                  "summary": "Returns the list of assets given search criteria.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "searchAssets",
                    "id": 1,
                    "params": {
                      "ownerAddress": "N4f6zftYsuu4yT7icsjLwh4i6pB1zvvKbseHj2NmSQw",
                      "limit": 1,
                      "page": 1
                    }
                  }
                },
                "getTokenAccounts": {
                  "summary": "Retrieve all the token accounts associated with a specific mint or owner account.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getTokenAccounts",
                    "id": 1,
                    "params": []
                  }
                },
                "getNftEditions": {
                  "summary": "Retrieve details of edition NFTs of a specified master NFT",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getNftEditions",
                    "id": 1,
                    "params": []
                  }
                },
                "getAssetSignatures": {
                  "summary": "List transactions signatures for a specified compressed asset",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetSignatures",
                    "id": 1,
                    "params": []
                  }
                },
                "getAssetsByGroup": {
                  "summary": "Return the list of assets given a group (key, value) pair.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetsByGroup",
                    "id": 1,
                    "params": {
                      "groupKey": "collection",
                      "groupValue": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac",
                      "limit": 1000,
                      "page": 1
                    }
                  }
                },
                "getAssets": {
                  "summary": "Returns the metadata information of compressed/standard assets.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssets",
                    "id": 1,
                    "params": {
                      "ids": [
                        "9ARngHhVaCtH5JFieRdSS5Y8cdZk2TMF4tfGSWFB9iSK",
                        "F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk"
                      ]
                    }
                  }
                },
                "getAsset": {
                  "summary": "Returns the metadata information of a compressed/standard asset.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAsset",
                    "id": 1,
                    "params": {
                      "id": "F9Lw3ki3hJ7PF9HQXsBzoY8GyE6sPoEZZdXJBsTTD2rk"
                    }
                  }
                },
                "getAssetProofs": {
                  "summary": "Returns the merkle tree proof information for compressed assets.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetProofs",
                    "id": 1,
                    "params": {
                      "ids": [
                        "F4cpdgYC6fH5nFipXWN8BksYJqf3rDCUymoCArj6DgTg",
                        "7NyFs3hmQjqJkp88mUMuKTWuMxhhPMbfpb948qn7JxWH"
                      ]
                    }
                  }
                },
                "getAssetProof": {
                  "summary": "Returns the merkle tree proof information for a compressed asset.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetProof",
                    "id": 1,
                    "params": {
                      "id": "F4cpdgYC6fH5nFipXWN8BksYJqf3rDCUymoCArj6DgTg"
                    }
                  }
                },
                "getAssetsByOwner": {
                  "summary": "Returns the list of assets given an owner address.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "getAssetsByOwner",
                    "id": 1,
                    "params": {
                      "ownerAddress": "E645TckHQnDcavVv92Etc6xSWQaq8zzPtPRGBheviRAk",
                      "limit": 10,
                      "page": 1
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "JSON-RPC response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "jsonrpc": {
                      "type": "string",
                      "enum": [
                        "2.0"
                      ]
                    },
                    "id": {
                      "type": "integer"
                    },
                    "result": {
                      "description": "Method result"
                    },
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "integer"
                        },
                        "message": {
                          "type": "string"
                        },
                        "data": {
                          "description": "Additional error data"
                        }
                      }
                    }
                  },
                  "required": [
                    "jsonrpc",
                    "id"
                  ]
                }
              }
            }
          }
        },
        "externalDocs": {
          "url": "https://www.quicknode.com/docs/solana/getAssetsByCreator",
          "description": "Documentation: getAssetsByCreator: https://www.quicknode.com/docs/solana/getAssetsByCreator, getAssetsByAuthority: https://www.quicknode.com/docs/solana/getAssetsByAuthority, searchAssets: https://www.quicknode.com/docs/solana/searchAssets, getTokenAccounts: https://www.quicknode.com/docs/solana/getTokenAccounts, getNftEditions: https://www.quicknode.com/docs/solana/getNftEditions, getAssetSignatures: https://www.quicknode.com/docs/solana/getAssetSignatures, getAssetsByGroup: https://www.quicknode.com/docs/solana/getAssetsByGroup, getAssets: https://www.quicknode.com/docs/solana/getAssets, getAsset: https://www.quicknode.com/docs/solana/getAsset, getAssetProofs: https://www.quicknode.com/docs/solana/getAssetProofs, getAssetProof: https://www.quicknode.com/docs/solana/getAssetProof, getAssetsByOwner: https://www.quicknode.com/docs/solana/getAssetsByOwner"
        },
        "tags": [
          "JSON-RPC"
        ]
      }
    }
  },
  "externalDocs": {
    "description": "Support Documentation",
    "url": "https://support.quicknode.com/"
  }
}