OPENAPI00006 The api path or method is not valid

I run the example python script as follows

import requests



wallet_address = "0x99561e3080385C907c4A9B4bbB944508E8d1D15e".lower()

url = f"https://openapi.msu.io/v1beta/accounts/{wallet_address}/items"

params = {

  "categoryNo": 1,

  "isOnSale": True

}



headers = {

  "x-nxopen-api-key": "gw_xxx"

}

response = requests.get(url, headers=headers, params=params)

data = response.json()

print(data)

And got this response

{'error': {'name': 'OPENAPI00006', 'message': 'The api path or method is not valid.'}}

I’m sure the API key passed is correct, I just applied it

Want to know if anyone has this issue

The issue is the URL path. You’re using v1beta but the correct version prefix is v1rc1. Try: https://openapi.msu.io/v1rc1/accounts/{wallet_address}/items That should resolve the OPENAPI00006 error.