Is there any sandbox for Coinbase, like in this old URL https://developers.coinbase.com/blog/2015/02/20/sandbox# for a demo page version, where the data is not in production?
2 Answers
I don't know if the coinbase API has a sandbox (I've searched for it in vain) but you could use the coinbase pro sandbox to run your tests (am having trouble with withdraws but everything else is working fine).
Check out their documentation here
You can also check out this article that makes a comparison between coinbase and coinbase pro.

- 978
- 11
- 21
I am currently building and using https://api-public.sandbox.pro.coinbase.com for sandbox. Dont forget to authorize https://public.sandbox.pro.coinbase.com/ to connect to your account, and create sandbox API keys for method AuthenticatedClient(key, b64secret, passphrase, api_url=sandboxurl)
To quote coinbase docs: " A public sandbox is available for testing API connectivity and web trading. While the sandbox only hosts a subset of the production order books, all of the exchange functionality is available. Additionally, in this environment you are allowed to add unlimited fake funds for testing.
Login sessions and API keys are separate from production. Use the sandbox web interface to create keys in the sandbox environment.
To add funds, use the web interface deposit and withdraw buttons as you would on the production web interface. "
source: https://docs.pro.coinbase.com/#sandbox
I hope this answers your question, kind regards!

- 11
- 6