Back to Ccxt

Revolutx

wiki/exchanges-implicit/revolutx.md

4.5.773.3 KB
Original Source

Every endpoint in revolutx'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#, Go and Java. Call them by the camelCase name shown in the tables below (e.g. publicGet20PublicOrderBookSymbol); the snake_case alias (public_get_2_0_public_order_book_symbol) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGet20PublicOrderBookSymbol). Switch tabs for the call in each language:

<!-- tabs:start -->

JavaScript

javascript
const revolutx = new ccxt.revolutx ();
const response = await revolutx.publicGet20PublicOrderBookSymbol (params);

TypeScript

typescript
import ccxt from 'ccxt';
const revolutx = new ccxt.revolutx ();
const response = await revolutx.publicGet20PublicOrderBookSymbol (params);

Python

python
import ccxt
revolutx = ccxt.revolutx()
response = revolutx.public_get_2_0_public_order_book_symbol(params)

PHP

php
$revolutx = new \ccxt\revolutx();
$response = $revolutx->public_get_2_0_public_order_book_symbol($params);

C#

csharp
using ccxt;
var revolutx = new Revolutx();
var response = await revolutx.publicGet20PublicOrderBookSymbol(parameters);

Go

go
revolutx := ccxt.NewRevolutx(nil)
response := <-revolutx.PublicGet20PublicOrderBookSymbol(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 revolutx API documentation: developer.revolut.com

16 implicit endpoints across 2 access groups.

public

Base URL: https://revx.revolut.com/api

MethodHTTPEndpointCost
publicGet20PublicOrderBookSymbolGET2.0/public/order-book/{symbol}1
publicGet10PublicTickersGET1.0/public/tickers1
publicGet10PublicCandlesSymbolGET1.0/public/candles/{symbol}1
publicGet10PublicTradesAllGET1.0/public/trades/all1
publicGet10PublicConfigurationCurrenciesGET1.0/public/configuration/currencies1
publicGet10PublicConfigurationPairsGET1.0/public/configuration/pairs1

private

Base URL: https://revx.revolut.com/api

MethodHTTPEndpointCost
privateGet10BalancesGET1.0/balances1
privateGet10OrdersActiveGET1.0/orders/active1
privateGet10OrdersHistoricalGET1.0/orders/historical1
privateGet10OrdersVenueOrderIdGET1.0/orders/{venue_order_id}1
privateGet10OrdersFillsVenueOrderIdGET1.0/orders/fills/{venue_order_id}1
privateGet10TradesPrivateSymbolGET1.0/trades/private/{symbol}1
privatePost10OrdersPOST1.0/orders1
privatePut10OrdersVenueOrderIdPUT1.0/orders/{venue_order_id}1
privateDelete10OrdersDELETE1.0/orders1
privateDelete10OrdersVenueOrderIdDELETE1.0/orders/{venue_order_id}1