# 4.2 Company Market Snapshot

```
GET /crypto-stocks/{stock_ticker}/market-snapshot
```

**Path Parameters**

| Parameter | Type   | Required | Description  |
| --------- | ------ | -------- | ------------ |
| ticker    | string | Yes      | Stock ticker |

**Response Example**

```json
{
    "timestamp": 1712000000,
    "ticker": "MSTR",
    "mkt_price": 56.2,
    "mkt_status": "close",
    "volume": 10000000,
    "turnover": 100000000,
    "circulating_marketcap": 100000000,
    "total_marketcap": 100000000,
    "total_shares": 20000,
    "circulating_shares": 200000,
    "pe_ttm": 1.1,
    "pb": 5.8
}
```

**Response Fields**

| Field                  | Type   | Description                  |
| ---------------------- | ------ | ---------------------------- |
| timestamp              | Long   | Data timestamp               |
| ticker                 | String | Stock ticker                 |
| mkt\_price             | Number | Market price                 |
| mkt\_status            | String | Market status (open / close) |
| volume                 | Number | Trading volume               |
| turnover               | Number | Trading value                |
| circulating\_marketcap | Number | Circulating market cap       |
| total\_marketcap       | Number | Total market cap             |
| total\_shares          | Number | Total shares outstanding     |
| circulating\_shares    | Number | Circulating shares           |
| pe\_ttm                | Number | Trailing P/E ratio (TTM)     |
| pb                     | Number | Price-to-book ratio (P/B)    |


---

# 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/4.-crypto-stocks/market-snapshot.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.
