githubEdit

Eos

get

Lists EOS accounts associated with the provided authorization token.

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

A promise that resolves to an AccountAPIResponse object containing the list of accounts, a success flag, and a message.

application/json

Interface representing the response from the Account API. Extends the BaseAPIResponse to include additional data specific to account responses.

successbooleanRequired

The success status of the operation.

messagestringRequired

The message associated with the operation.

addressstringOptional

The address associated with the operation.

get
/eos
200

A promise that resolves to an AccountAPIResponse object containing the list of accounts, a success flag, and a message.

post

Creates a new EOS account.

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

The network on which the transaction is taking place.

private_keystringOptional

The private key of the account.

Responses
chevron-right
200

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

application/json

Interface representing the response from the Account API. Extends the BaseAPIResponse to include additional data specific to account responses.

successbooleanRequired

The success status of the operation.

messagestringRequired

The message associated with the operation.

addressstringOptional

The address associated with the operation.

post
/eos
200

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

get

Retrieves account information from the EOS blockchain.

Authorizations
AuthorizationstringRequired
Path parameters
accountNamestringRequired
  • The name of the EOS account to retrieve information for.
Header parameters
AuthorizationstringRequired
  • The authorization token from the request header.
Responses
chevron-right
200

A promise that resolves to an AccountAPIResponse object containing the account data, success status, and a message.

application/json

Interface representing the response from the Account API. Extends the BaseAPIResponse to include additional data specific to account responses.

successbooleanRequired

The success status of the operation.

messagestringRequired

The message associated with the operation.

addressstringOptional

The address associated with the operation.

get
/eos/{accountName}
200

A promise that resolves to an AccountAPIResponse object containing the account data, success status, and a message.