Solana NFT API Issue with Error -32603 (Internal Server Error)

Hi guys, I’m currently developing the backend that integrated with Solana NFT, when I tried to use the Quicknode api on the postman based on this picture and curl code (qn_fetchNFTs RPC Method | Solana Documentation)

curl https://docs-demo.solana-mainnet.quiknode.pro/ \
  -X POST \
  -H "Content-Type: application/json" \
  -H "x-qn-api-version: 1" \
  --data '{
    "id":67,
    "jsonrpc":"2.0",
    "method":"qn_fetchNFTs",
    "params":{
      "wallet": "DcTmx4VLcf5euAB17nynax7g55xuB3XKBDyz1pudMcjW",
      "omitFields": [
        "provenance",
        "traits"
      ],
      "page": 1,
      "perPage": 10
    }
  }'

I got the error with the code -32603 with the message “An internal server error occurred while processing your request. Please try again later or contact support if the issue persists.”

Is anyone know what happen on this? Thankyou

Hello William,

Based on that error response and what I have tested on my end, you are not using the RPC URL provided in the dashboard. You must replace https://docs-demo.solana-mainnet.quiknode.pro/ with the custom QuickNode one found on your dashboard.

-Nick

1 Like

Thankyou sir for telling me about this. It’s already be returned the result successfully. :pray:

1 Like