Bitcoin

get

Lists the accounts associated with the provided authorization token.

Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired
  • The authorization token from the request header.
Responses
200

A promise that resolves to an AccountAPIResponse object containing the account data.

application/json
get
/bitcoin
200

A promise that resolves to an AccountAPIResponse object containing the account data.

post

Creates a new Bitcoin account.

Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired
  • The authorization token from the request header.
Body
  • The input data required to create a Bitcoin account.
networkstringOptional

The network on which the transaction is taking place.

private_keystringOptional

The private key of the account.

Responses
200

A promise that resolves to an AccountAPIResponse object containing the account creation result.

application/json
post
/bitcoin
200

A promise that resolves to an AccountAPIResponse object containing the account creation result.

get

Retrieves the account information for a given account name.

Authorizations
AuthorizationstringRequired
Path parameters
accountNamestringRequired
  • The name of the account to retrieve.
Header parameters
AuthorizationstringRequired
  • The authorization token from the request header.
Responses
200

A promise that resolves to an AccountAPIResponse object containing the account data.

application/json
get
/bitcoin/{accountName}
200

A promise that resolves to an AccountAPIResponse object containing the account data.