EGP NFT Interaction Service
  1. SPL DAS API
EGP NFT Interaction Service
  • Overview
  • EVM Contract Interactions
    • Get Stored Contract ABI
      GET
    • Delete Contract Registration
      DELETE
    • Get All Registered Contracts
      GET
    • Register Contract
      POST
  • EVM & SPL Contract Subscription
    • Subscribe to Contract Events / Monitor Solana Collection
      GET
  • SPL DAS API
    • Get Solana Asset (DAS)
      GET
    • Get Solana Asset Batch (DAS)
      POST
    • Get Solana Asset Proof (DAS)
      GET
    • Get Solana Asset Proof Batch (DAS)
      POST
    • Get Solana Assets By Authority (DAS)
      GET
    • Get Solana Assets By Creator (DAS)
      GET
    • Get Solana Assets By Group (DAS)
      GET
    • Get Solana Assets By Owner (DAS)
      GET
    • Get Solana NFT Editions (DAS)
      GET
    • Get Solana Signatures For Asset (DAS)
      GET
    • Get Solana Token Accounts (DAS)
      GET
    • Search Solana Assets (DAS)
      GET
  1. SPL DAS API

Get Solana Asset Proof Batch (DAS)

POST
/api/v1/nftcontract/getAssetProofBatch
Retrieves Merkle proofs for multiple compressed Solana assets using the DAS API.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://egpnfts.srblabs.io/api/v1/nftcontract/getAssetProofBatch' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ids": [
        "string"
    ],
    "network": "string",
    "programAddress": "string"
}'
Response Response Example
200 - Example 1
{
    "property1": {
        "leaf": "string",
        "node_index": 0,
        "proof": [
            "string"
        ],
        "root": "string",
        "tree_id": "string"
    },
    "property2": {
        "leaf": "string",
        "node_index": 0,
        "proof": [
            "string"
        ],
        "root": "string",
        "tree_id": "string"
    }
}

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Map of asset ID to asset proof
Body

🟠400Bad Request
🔴500Server Error
🔴501501
Modified at 2025-05-01 04:53:15
Previous
Get Solana Asset Proof (DAS)
Next
Get Solana Assets By Authority (DAS)
Built with