Transactions
The Transactions API within Octane empowers you to efficiently manage and retrieve orders associated with your account.
The Endpoint is in Beta
Creating and managing transactions with the Octane Transactions API is a straightforward process:
Create Transaction (POST):
Use the
/v2/octane/transactions
endpoint.Provide essential details like blockchain type, currency pairs, quantities, and associated wallet and bank account information in the request body.
Results in successful order creation with timestamp and transaction type details.
Retrieve All Orders (GET):
Utilize the
/v2/octane/transactions
endpoint with a GET request.Retrieve all orders linked to the provided apiKey.
Access detailed information such as IDs, blockchain specifics, currencies involved, and timestamps.
Upcoming filtering options allow you to refine results.
Retrieve Specific Order (GET):
Access details of a specific order using the
/v2/octane/transactions/:Id
endpoint.Provide the order's ID and apiKey.
Retrieve comprehensive details, including transaction types, completion status, and precise currency exchange specifics.
Transactions API Endpoints
Post Transaction
POST
https://api.abyiss.com/v2/octane/transactions
Returns a 201 status code upon successful query. Then returns the successful order. Requires user to have associated bank account and wallet.
Headers
Request Body
Get Transactions
GET
https://api.abyiss.com/v2/octane/transactions
Returns an array of all the orders for an associated apiKey
.
Headers
Get Transaction by ID
GET
https://api.abyiss.com/v2/octane/transactions/{transactionId}
Returns an object for the transactionId
for an associated apiKey
.
Query Parameters
Headers
Copy & Paste Code
POST Transactions
GET Transactions
Transactions Response Object
Transactions Response Attributes
Last updated