> For the complete documentation index, see [llms.txt](https://apidocs.tradebit.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.tradebit.io/api-reference/public-apis/crypto.md).

# Crypto

## All Symbols

## All Symbols Data

<mark style="color:blue;">`GET`</mark> `{{BASE_NODE_URL}}/dashboard/all-symbols`&#x20;

Crypto symbols are shorthand representations of cryptocurrencies used for trading, tracking, and identifying specific digital assets within the cryptocurrency market.

{% tabs %}
{% tab title="200: OK Success" %}

```javascript
{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}
```

{% endtab %}
{% endtabs %}

## Crypto List

## Crypto List

<mark style="color:blue;">`GET`</mark> `{{BASE_NODE_URL}}/list-crypto/get`&#x20;

Here is a list of some cryptocurrencies along with their symbols (ticker symbols):

{% tabs %}
{% tab title="200: OK Success" %}

```javascript
{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}
```

{% endtab %}
{% endtabs %}

## Crypto Chart Data

## Crypto Chart Data

<mark style="color:blue;">`GET`</mark> `{{BASE_NODE_URL}}/chart?symbol=BTCUSDT&interval=30m`&#x20;

Crypto chart data refers to the historical price and trading volume information of cryptocurrencies over a specific period of time.

{% tabs %}
{% tab title="200: OK Success" %}

```javascript
{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}
```

{% endtab %}
{% endtabs %}

## Bid And Ask Data

## Bid And Ask Data

<mark style="color:blue;">`GET`</mark> `{{BASE_NODE_URL}}/list-crypto/market-data/BTCUSDT?limit=20`&#x20;

&#x20;<mark style="color:blue;">**Bid**</mark> <mark style="color:blue;">**Price :**</mark> The bid price is the highest price that a buyer (or bidder) in the market is willing to pay to purchase a specific cryptocurrency. It represents the maximum price that someone is willing to pay to acquire the asset.

<mark style="color:blue;">**Ask Price :**</mark> The ask price is the lowest price that a seller (or asker) in the market is willing to accept to sell a specific cryptocurrency. It represents the minimum price at which someone is willing to sell the asset.

{% tabs %}
{% tab title="200: OK Success" %}

```javascript
{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}
```

{% endtab %}
{% endtabs %}

## Market Trade Data

## Market Trade History Data

<mark style="color:blue;">`GET`</mark> `{{BASE_NODE_URL}}/list-crypto/trade-history/BTCUSDT?limit=50`&#x20;

Market trade data, often referred to simply as trade data, provides information about individual trades that have occurred in a financial market, including cryptocurrency markets.

{% tabs %}
{% tab title="200: OK Success" %}

```javascript
{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}
```

{% endtab %}
{% endtabs %}

## Market Gainer Data

## Market Gainer Data

<mark style="color:blue;">`GET`</mark> `{{BASE_NODE_URL}}/dashboard/market-gainers`&#x20;

Market gainer data refers to information about financial assets, such as stocks, cryptocurrencies, or commodities, that have experienced an increase in their prices or values over a specific time period.

{% tabs %}
{% tab title="200: OK Success" %}

```java
{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://apidocs.tradebit.io/api-reference/public-apis/crypto.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
