Date: | Action: | Update: |
---|---|---|
22-04-2021 |
Faucet |
WRKZ Faucets is filled and ready to use. |
22-04-2021 |
Voting |
Bitgesell completed voting. Listing in process. |
21-04-2021 |
Voting |
Added Bitgesell to voting list. |
21-04-2021 |
Listing |
WRKZ - WRKZ coin was listed. |
17-04-2021 |
Voting |
WRKZ Coin completed voting. Listing in process. |
12-04-2021 |
Listing |
WSBC - Wallstreetbet coin was listed. |
04-04-2021 |
Update |
Added server status pages. |
27-03-2021 |
Update |
Several pages updated to new style. |
25-03-2021 |
Update |
Homepage restyled. |
24-03-2021 |
Listing |
Listed CryptoCoin |
22-03-2021 |
Update |
Complete restyling on both pages |
18-03-2021 |
Listing |
Listed PriceCoinX Coin |
16-03-2021 |
Voting |
Added PriceCoinX Coin to the voting list |
09-03-2021 |
Voting |
Added CryptoCoin to the voting list |
23-02-2021 |
Update |
Hompage updated, Restyle |
20-02-2021 |
Listing |
Listed Nimbo Coin |
18-02-2021 |
Voting |
Added Nimbo Coin to the voting list |
API endpoints:
Puplic APIs:
get_market_summaries
Fetches a list of all enabled markets.
This action is part of the public API and requires no authentication. It also requires no arguments.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_market_summaries"
get_market_orderbook
Fetches the orderbook for a specified market.
This action is part of the public API and requires no authentication.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_DOGE, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_DOGE, this would be DOGE.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_market_orderbook
&__wallets_exchange_base_symbol=BTC
&__wallets_exchange_quote_symbol=DOGE"
get_market_history
Fetches the recent history of matched orders for a specified market.
This action is part of the public API and requires no authentication.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_DOGE, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_DOGE, this would be DOGE.
• __wallets_exchange_from_timestamp— Optional. Earliest UNIX timestamp
constraint.
• __wallets_exchange_to_timestamp — Optional. Latest UNIX timestamp constraint.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_market_history
&__wallets_exchange_base_symbol=BTC
&__wallets_exchange_quote_symbol=DOGE
&__wallets_exchange_from_timestamp=1530800000"
get_market_prices
Fetches OHLC (Open, High, Low, Close) historical market prices for a specified market and
timeframe.
This action is part of the public API and requires no authentication.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_DOGE, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_DOGE, this would be DOGE.
• __wallets_exchange_timeframe— One of 1m, 3m, 5m, 15m, 30m, 1h, 4h, 1d,
1w.
• __wallets_exchange_from_timestamp— Optional. Earliest UNIX timestamp
constraint.
• __wallets_exchange_to_timestamp — Optional. Latest UNIX timestamp constraint.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_market_prices
&__wallets_exchange_timeframe=5m
&__wallets_exchange_base_symbol=BTC
&__wallets_exchange_quote_symbol=DOGE
&__wallets_exchange_to_timestamp=1530800000
Private APIs
We are working on private API points, so that you can later use your private API keys to perform actions from outside (bot trading for example).
do_reset_apikey
Resets the API key and returns the new key. It requires no additional arguments.
This action requires authentication (with the old API key).
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=do_reset_apikey
&__wallets_api_key=01234567"
do_market_order
Places a new market order.
If there is not enough liquidity to match the entire order, the order is not processed.
This action requires authentication.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_LTC, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_LTC, this would be LTC.
• __wallets_exchange_amount — The amount of the quote currency for this limit
order.
• __wallets_exchange_direction — The direction (side) of this order. Can be
bid or ask.
Example:
Buy 100000 DOGE instantly at the current market price using Bitcoin.
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=do_limit_order
&__wallets_exchange_base_symbol=BTC
&__wallets_exchange_quote_symbol=DOGE
&__wallets_exchange_amount=100000
&__wallets_exchange_direction=bid
&__wallets_api_key=01234567"
do_limit_order
Places a new limit order.
This action requires authentication.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_LTC, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_LTC, this would be LTC.
• __wallets_exchange_amount — The amount of the quote currency for this limit
order.
• __wallets_exchange_rate — The exchange rate for this limit order.
• __wallets_exchange_direction — The direction (side) of this order. Can be
bid or ask.
Example:
Buy 100000 DOGE at a rate of 40 Bitcoin satoshi:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=do_limit_order
&__wallets_exchange_base_symbol=BTC
&__wallets_exchange_quote_symbol=DOGE
&__wallets_exchange_amount=100000
&__wallets_exchange_rate=0.00000040
&__wallets_exchange_direction=bid
&__wallets_api_key=01234567"
do_cancel_order
Cancels an order that the user has previously placed.
If the order is already partially filled, then the order becomes filled and the total amount
becomes the same as the already filled amount. If the order is not partially filled yet, it becomes
cancelled.
This action requires authentication.
Arguments:
• __wallets_exchange_order_id — The order ID string of the order to cancel.
Example:
Cancel order with ID O12345678:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=do_cancel_order
&__wallets_exchange_order_id=O12345678
&__wallets_api_key=012345678"
get_user_orders
Fetches the user orders that match the specified criteria.
This action requires authentication.
Each call returns a maximum of 100 results.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_LTC, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_LTC, this would be LTC.
• __wallets_exchange_open — Set to a truthy value to return open orders. This
includes partially filled orders.
• __wallets_exchange_filled — Set to a truthy value to return completely filled
orders.
• __wallets_exchange_cancelled — Set to a truthy value to return cancelled orders.
• __wallets_exchange_from_timestamp— Optional. Earliest UNIX timestamp
constraint.
• __wallets_exchange_to_timestamp — Optional. Latest UNIX timestamp constraint.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_user_orders
&__wallets_api_key=01234567"
get_user_history
Fetches the user trades that match the specified market.
This action requires authentication.
Each call returns a maximum of 100 results.
If base_symbol and quote_symbol are not specified, returns all trades for the user
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_LTC, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_LTC, this would be LTC.
• __wallets_exchange_from_timestamp— Optional. Earliest UNIX timestamp
constraint.
• __wallets_exchange_to_timestamp — Optional. Latest UNIX timestamp constraint.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_user_history
&__wallets_api_key=01234567"
get_user_tradable_balances
Fetches the maximum amount of the base currency and of the quote currency that a user may
trade in the specified market. Takes into account current user balances for the two coins, as
well as any amounts already reserved in open orders. Useful for displaying maximum amounts
in UIs.
This action requires authentication.
Arguments:
• __wallets_exchange_base_symbol — The base symbol of the market to query.
e.g. in BTC_LTC, this would be BTC.
• __wallets_exchange_quote_symbol — The quote symbol of the market to query.
e.g. in BTC_LTC, this would be LTC.
Example:
curl "https://www.crypto-services.exchange/
?__wallets_exchange_action=get_user_tradable_balances
&__wallets_exchange_base_symbol=BTC
&__wallets_exchange_quote_symbol=DOGE
&__wallets_api_key=01234567"