# GET Symbol Adjustment Factors

### Overview

This interface is used to obtain the price adjustment factors for products in different markets.

### Request Frequency

This API shares the same rate limits as other endpoints. The number of allowed requests per second depends on your subscription plan. Please refer to the [**Rate Limit**](https://docs.infoway.io/en-docs/getting-started/api-limitation/rest-api-limitation) for details.​

### Error Codes

See the [HTTP Error Codes](https://docs.infoway.io/en-docs/getting-started/error-codes/rest-api-error-codes) section for reference.​

### Endpoint

* Base Path：`/common/basic/symbols/adjustment_factors`
* Full Path：`https://data.infoway.io/common/basic/symbols/adjustment_factors`

### Authentication

| **Header** | **Type** | **Required** | **Description**                                 |
| ---------- | -------- | ------------ | ----------------------------------------------- |
| `apiKey`   | String   | Yes          | Your API Key associated with your current plan. |

### Request Parameters

| **Header** | **Type** | **Required** | **Description**                                            | **Example / Values** |
| ---------- | -------- | ------------ | ---------------------------------------------------------- | -------------------- |
| `symbol`   | String   | Yes          | Comma-separated list of specific symbols to query.         | `000001.SZ`          |
| `market`   | String   | Yes          | Market code. Options include `US`, `HK`, `CN`, `IN`, `JP`. | `US`                 |
| `beginDay` | String   | Yes          | Start date for the query, in `YYYYMMDD` format.            | `20260323`           |
| `endDay`   | String   | Yes          | End date for the query, in `YYYYMMDD` format.              | `20260324`           |

​

### Example Response

```json
{
    "ret": 200,
    "msg": "success",
    "traceId": "a50ecfd7-decf-4c80-8ee0-798ede935794",
    "data": [
        {
            "symbol": "000001.SZ",
            "market": "CN",
            "trade_date": "19910102",
            "forward_factor": 0.6399030867
        },
        {
            "symbol": "000001.SZ",
            "market": "CN",
            "trade_date": "19910103",
            "forward_factor": 0.6399029351
        }
    ]
}
```

| **Header**       | **Type**   | **Required** | **Description**                                            | **Description** |
| ---------------- | ---------- | ------------ | ---------------------------------------------------------- | --------------- |
| `symbol`         | String     | Yes          | Comma-separated list of specific symbols to query.         | `000001.SZ`     |
| `market`         | String     | Yes          | Market code. Options include `US`, `HK`, `CN`, `IN`, `JP`. | `US`            |
| `trade_date`     | String     | Yes          | Trade date for the query, in `YYYYMMDD` format.            | `19910103`      |
| `forward_factor` | BigDecimal | Yes          | Forward factor.                                            | `0.6499029351`  |
