Algoexplorer: Access to fetch at 'https://node.testnet.algoexplorerapi.io/v2/accounts/AccountNumber' has been blocked, Error 403

Hey everyone,
So I’ve changed the testnet API link for algoexplorer as per their announcement that they’re depreciating the (https://api.testnet.algoexplorer.io/v2) by February, so I changed my api testnet link to 'https://node.testnet.algoexplorerapi.io/v2.
Without changing any headers or any data when I try to get and post on the new api it gives me this error.


This is how I’m requesting it from the code.

Get Request

const response = await fetch(https://node.testnet.algoexplorerapi.io/v2/accounts/${accountAddress}`);This same request was working fine for old linkhttps://api.testnet.algoexplorer.io`

Any help would be appreciated, thanks!

Hi!

Some endpoints for the Algod v2 API are disabled.
You can find a list of the available endpoints here: AlgoExplorer API: Algorand Node API end-points will be limited.

If you want to get the current state of an account, you may want to use the indexer API instead: https://algoindexer.testnet.algoexplorerapi.io/v2/accounts/FANMLQLXLECNZRYFVNZS6TSNEUQ7KKIJOWSUCUXG727XACM7QRT2DLY25I

1 Like

Thanks for the reply,
I was actually looking for the data related to that account, which I repeat was working perfectly fine on the previous (soon to be depreciated ) link.