# 1.2 Currency Info

```
GET /currencies/{currency_id}
```

**Path Parameters**

| Parameter    | Type   | Required | Description |
| ------------ | ------ | -------- | ----------- |
| currency\_id | String | Yes      | Currency ID |

**Response Example**

```json
{
    "currency_id": "1673723677362319867",
    "name": "ethereum",
    "symbol": "ETH",
    "introduction": "Bitcoin (BTC) is a decentralized digital currency...",
    "sector": [
        {
            "id": "1",
            "name": "DeFi"
        }
    ],
    "icon": "https://...",
    "contracts": [
        {
            "chain": "Ethereum",
            "contract": "0x..."
        }
    ],
    "white_paper": "https://ethereum.org/en/whitepaper/",
    "first_issue_time": "1438242398585",
    "explorers": [
        "https://etherscan.io/",
        "https://platform.arkhamintelligence.com/explorer/token/ethereum",
        "https://ethplorer.io/"
    ],
    "community": {
        "twitter": "https://twitter.com/ethereum",
        "reddit": "https://www.reddit.com/r/ethereum"
    },
    "significant_events": [
        {
            "time": "1510070400000",
            "content": "Anatoly Yakovenko published the whitepaper on \"Proof of History (PoH)\"..."
        }
    ]
}
```

**Response Fields**

| Field                          | Type           | Description                     |
| ------------------------------ | -------------- | ------------------------------- |
| currency\_id                   | String         | Currency ID                     |
| name                           | String         | Currency full name              |
| symbol                         | String         | Currency symbol                 |
| introduction                   | String         | Currency description            |
| sector                         | Array\[Object] | Sector list                     |
| sector\[].id                   | String         | Sector ID                       |
| sector\[].name                 | String         | Sector name                     |
| icon                           | String         | Currency icon URL               |
| contracts                      | Array\[Object] | Contract address list           |
| contracts\[].chain             | String         | Chain name                      |
| contracts\[].contract          | String         | Contract address                |
| white\_paper                   | String         | Whitepaper URL                  |
| first\_issue\_time             | String         | First issuance time (timestamp) |
| explorers                      | Array\[String] | Block explorer URLs             |
| community                      | Object         | Community links                 |
| community.twitter              | String         | Twitter URL                     |
| community.reddit               | String         | Reddit URL                      |
| significant\_events            | Array\[Object] | Significant events list         |
| significant\_events\[].time    | String         | Event time (timestamp)          |
| significant\_events\[].content | String         | Event description               |


---

# Agent Instructions: 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:

```
GET https://sosovalue-1.gitbook.io/sosovalue-api-doc/1.-currency-and-pairs/info.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
