Questions tagged [coinbase-api]

Questions about the Coinbase API for buying, selling, storing, and transferring digital currency. Please do not ask general support questions here.

Coinbase is an online platform for buying, selling, transferring, and storing digital currency.

Links:

663 questions
2
votes
1 answer

How to use Coinbase API to determine whether the market is up or down by a certain percentage?

I need help identifying any API endpoint for crypto market updates i.e. an API that will aggregate market price movements then indicate whether the market is up or down and by what percentage. Refer below for sample update that I need In the past…
ICARUS
  • 57
  • 7
2
votes
0 answers

Deposit from paypal to coinbase

I want to transfer/deposit money from attached paypal account to coinbase. But all api methods dont work. Get payment ID - client.get_payment_methods() "label": "Daily PayPal limit" Make buy/deposit methods. Deposit return - Can't deposit with…
2
votes
0 answers

Coinbase Pro - IP does not match IP whitelist issue but IP is whitelisted already

I'm using coinbase pro API to fetch some data and to make some trades but API is returning {"message":"IP does not match IP whitelist"} I'm using Rest API with correct API keys. I'm sure API keys are authenticated correctly and while creating API…
Asad ullah
  • 620
  • 2
  • 9
  • 26
2
votes
0 answers

Coinbase API - transfer between currencies, EOS-BTC

In the API reference I see buy/sell, that requires a FIAT token. Is there an option in the Coinbase API that will allow me to transfer/convert from one wallet to another, say EOS to BTC ? or actually I want to transfer between USDC and BTC ?
Douglas
  • 21
  • 1
2
votes
0 answers

Undocumented transaction types

While integrating with the Transactions API I noticed the following undocumented types: pro_deposit: seems to be equivalent to exchange_deposit pro_withdrawal: seems to be equivalent to exchange_withdrawal order: similar to a send but tracks a…
2
votes
2 answers

Coinbase API BTC account missing

thanks for coming to my aid. In the course of using the coinbase API, when I call client.getAccounts({}, function(error, accounts){ console.log('accounts', accounts) }) I notice a number of accounts including ethereum, litecoin, but no bitcoin…
Tom
  • 41
  • 6
2
votes
2 answers

coinbase api invalid signature error python on get request

trying to view my listed accounts in coinbase and I've generated my hmac hash and got no errors however for some reason I'm still getting {'message': 'invalid signature'} and a 401 error, I even tried to make a new key in coinbase to make sure that…
luther wardle
  • 439
  • 5
  • 17
2
votes
1 answer

Coinbase Websocket Channel match vs ticker

Trying to understand the difference between a match and ticker message type. If I understand the message types correctly, a match represents trades from a maker perspective and a ticker represents a trade from a taker perspective. Said…
Joseph Carroll
  • 465
  • 6
  • 15
2
votes
1 answer

Coinbase API standard python example returns "invalid signature"

I am trying to use the Coinbase API with Python, starting of from the standard example on the Coinbase Developer API page: https://developers.coinbase.com/docs/wallet/api-key-authentication# This piece of code gave me only errors, like: TypeError:…
Eindhoven
  • 21
  • 1
2
votes
1 answer

Having trouble connecting to coinbase api

I have followed the documentation on the python Coinbase api https://github.com/resy/coinbase_python3 and created this python script in a file within the coinbase_python3 folder: import coinbase coinbase_api_key = "" coinbase_api_secret =…
Jonathan
  • 441
  • 1
  • 9
  • 28
2
votes
0 answers

Looking for /trade API endpoint information?

Is there any way (via the API) to trade / convert between currencies? For example, within a Coinbase account, we can trade (or convert) BTC to ETH. But what endpoint allows us to do this via the API -- the documentation seems to be missing any…
bdcoder
  • 3,280
  • 8
  • 35
  • 55
2
votes
1 answer

coinbase api always 401 unauthorized

I have waited faithfully for well over 48 hours since generating api keys as suggested and no matter what I do, every coinbase api call gives 401 Unauthorized I have checked basic non-authentication required calls like /time and /exchange_rates and…
2
votes
1 answer

Send off_blockchain transaction using bitcoin address (instant send)

When you paste bitcoin address in Coinbase web UI, it recognizes when the recipient has the "instant send" feature turned on and suggests sending the transaction off chain. Is there such a feature in the API? Right now if you send to an address of…
Eduard Avetisyan
  • 471
  • 1
  • 4
  • 20
2
votes
1 answer

Get % gain/ loss of BTC in the last 24 hour period - Coinbase

I am looking to get the % change of the cryptocurrency Bitcoin vs USD. Something similar to the way Coinbase works it out on their website (the red -10% for example): I attempted to find this via the Coinbase API but wasn't able to. Closest I got…
nopassport1
  • 1,821
  • 1
  • 25
  • 53
2
votes
0 answers

JS/React Coinbase OAuth2 Access Token "service_unavailable" error

I am trying to get an access token after getting the authorization code. I have the following fetch request: NOTE: the data supplied to the body contains all the required fields and their values, and the url variable is…