Back to Ccxt

Bitflyer

wiki/exchanges-implicit/bitflyer.md

4.5.643.9 KB
Original Source

Every endpoint in bitflyer's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C# and Go. Call them by the camelCase name shown in the tables below (e.g. publicGetGetmarketsUsa); the snake_case alias (public_get_getmarkets_usa) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetGetmarketsUsa). Switch tabs for the call in each language:

<!-- tabs:start -->

JavaScript

javascript
const bitflyer = new ccxt.bitflyer ();
const response = await bitflyer.publicGetGetmarketsUsa (params);

TypeScript

typescript
import ccxt from 'ccxt';
const bitflyer = new ccxt.bitflyer ();
const response = await bitflyer.publicGetGetmarketsUsa (params);

Python

python
import ccxt
bitflyer = ccxt.bitflyer()
response = bitflyer.public_get_getmarkets_usa(params)

PHP

php
$bitflyer = new \ccxt\bitflyer();
$response = $bitflyer->public_get_getmarkets_usa($params);

C#

csharp
using ccxt;
var bitflyer = new Bitflyer();
var response = await bitflyer.publicGetGetmarketsUsa(parameters);

Go

go
bitflyer := ccxt.NewBitflyer(nil)
response := <-bitflyer.PublicGetGetmarketsUsa(params)
<!-- tabs:end -->

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official bitflyer API documentation: lightning.bitflyer.com

35 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetGetmarketsUsaGETgetmarkets/usa
publicGetGetmarketsEuGETgetmarkets/eu
publicGetGetmarketsGETgetmarkets
publicGetGetboardGETgetboard
publicGetGettickerGETgetticker
publicGetGetexecutionsGETgetexecutions
publicGetGethealthGETgethealth
publicGetGetboardstateGETgetboardstate
publicGetGetchatsGETgetchats
publicGetGetfundingrateGETgetfundingrate

private

MethodHTTPEndpointCost
privateGetGetpermissionsGETgetpermissions
privateGetGetbalanceGETgetbalance
privateGetGetbalancehistoryGETgetbalancehistory
privateGetGetcollateralGETgetcollateral
privateGetGetcollateralhistoryGETgetcollateralhistory
privateGetGetcollateralaccountsGETgetcollateralaccounts
privateGetGetaddressesGETgetaddresses
privateGetGetcoininsGETgetcoinins
privateGetGetcoinoutsGETgetcoinouts
privateGetGetbankaccountsGETgetbankaccounts
privateGetGetdepositsGETgetdeposits
privateGetGetwithdrawalsGETgetwithdrawals
privateGetGetchildordersGETgetchildorders
privateGetGetparentordersGETgetparentorders
privateGetGetparentorderGETgetparentorder
privateGetGetexecutionsGETgetexecutions
privateGetGetpositionsGETgetpositions
privateGetGettradingcommissionGETgettradingcommission
privatePostSendcoinPOSTsendcoin
privatePostWithdrawPOSTwithdraw
privatePostSendchildorderPOSTsendchildorder
privatePostCancelchildorderPOSTcancelchildorder
privatePostSendparentorderPOSTsendparentorder
privatePostCancelparentorderPOSTcancelparentorder
privatePostCancelallchildordersPOSTcancelallchildorders