> ## Documentation Index
> Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 기초 재무 지표

> fundamentals()

[\< 뒤로](/ko/sdks/languages/java#fundamentals)

<div id="overview">
  ## 개요
</div>

<div id="available-operations">
  ### 사용 가능한 작업
</div>

* [getV21](#getv21) - 기초 재무 지표 V2.1 가져오기
* [getAlphaBeta](#getalphabeta) - Alpha Beta V2.1 가져오기
* [getCompanyV21](#getcompanyv21) - 회사 데이터 v2.1 가져오기
* [getCompanyProfileV21](#getcompanyprofilev21) - 회사 프로필 v2.1 가져오기
* [getShareClass](#getshareclass) - 주식 종류 V2.1 가져오기
* [getShareClassProfile](#getshareclassprofile) - 주식 종류 프로필 V2.1 가져오기
* [get](#get) - 기초 재무 지표 V2 가져오기
* [getAssetClassification](#getassetclassification) - 자산 분류 V2.1 가져오기
* [getEarningsReports](#getearningsreports) - 실적 보고서 V2.1 가져오기
* [getFinancialsV21](#getfinancialsv21) - 재무제표 V2.1 가져오기
* [getV3](#getv3) - 기초 재무 지표 V3 가져오기
* [getBalanceSheetV3](#getbalancesheetv3) - 대차대조표 V3 가져오기
* [getCashFlowV3](#getcashflowv3) - 현금흐름표 V3 가져오기
* [getIncomeStatement](#getincomestatement) - 손익계산서 V3 가져오기
* [getSharePriceRatios](#getsharepriceratios) - 주가 비율 V3 가져오기

<div id="getv21">
  ## getV21
</div>

기초 재무 지표 v2.1 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFundamentalsV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetFundamentalsV21Response res = sdk.fundamentals().getV21()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 파라미터

| 파라미터         | 타입                  | 필수 여부                | 설명            |
| ------------ | ------------------- | -------------------- | ------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 날짜         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형        |

<div id="response">
  ### 응답
</div>

**[GetFundamentalsV21Response](../../models/operations/GetFundamentalsV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 타입 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getalphabeta">
  ## getAlphaBeta
</div>

알파/베타 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetAlphaBetaV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetAlphaBetaV21Response res = sdk.fundamentals().getAlphaBeta()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| Parameter    | Type                | Required             | Description   |
| ------------ | ------------------- | -------------------- | ------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 리포트 유형        |

<div id="response">
  ### 응답
</div>

**[GetAlphaBetaV21Response](../../models/operations/GetAlphaBetaV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getcompanyv21">
  ## getCompanyV21
</div>

회사 데이터 조회

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetCompanyV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetCompanyV21Response res = sdk.fundamentals().getCompanyV21()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| Parameter    | Type                | Required             | Description      |
| ------------ | ------------------- | -------------------- | ---------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 콤마(,)로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준일              |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간               |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형           |

<div id="response">
  ### 응답
</div>

**[GetCompanyV21Response](../../models/operations/GetCompanyV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getcompanyprofilev21">
  ## getCompanyProfileV21
</div>

회사 프로필 조회

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetCompanyProfileV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetCompanyProfileV21Response res = sdk.fundamentals().getCompanyProfileV21()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| Parameter    | Type                | Required             | Description      |
| ------------ | ------------------- | -------------------- | ---------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 콤마(,)로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자            |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간               |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형           |

<div id="response">
  ### 응답
</div>

**[GetCompanyProfileV21Response](../../models/operations/GetCompanyProfileV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getshareclass">
  ## getShareClass
</div>

주식 클래스 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetShareClassV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetShareClassV21Response res = sdk.fundamentals().getShareClass()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

<div id="parameters">
  ### Parameters
</div>

| Parameter    | Type                | Required             | Description      |
| ------------ | ------------------- | -------------------- | ---------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 쉼표(,)로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자            |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간               |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형           |

<div id="response">
  ### 응답
</div>

**[GetShareClassV21Response](../../models/operations/GetShareClassV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getshareclassprofile">
  ## getShareClassProfile
</div>

주식 클래스 프로필 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetShareClassProfileV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetShareClassProfileV21Response res = sdk.fundamentals().getShareClassProfile()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| Parameter    | Type                | Required             | Description        |
| ------------ | ------------------- | -------------------- | ------------------ |
| `symbols`    | *String*            | :heavy\_check\_mark: | 심볼(티커)을 쉼표로 구분한 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자              |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간                 |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형             |

<div id="response">
  ### 응답
</div>

**[GetShareClassProfileV21Response](../../models/operations/GetShareClassProfileV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 타입 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="get">
  ## 가져오기
</div>

기초 재무 지표 v2 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFundamentalsV2Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetFundamentalsV2Response res = sdk.fundamentals().get()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

<div id="parameters">
  ### Parameters
</div>

| Parameter    | Type                | Required             | Description   |
| ------------ | ------------------- | -------------------- | ------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 콤마로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고 유형         |

<div id="response">
  ### 응답
</div>

**[GetFundamentalsV2Response](../../models/operations/GetFundamentalsV2Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 타입 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getassetclassification">
  ## getAssetClassification
</div>

자산 분류 조회

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetAssetClassificationV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetAssetClassificationV21Response res = sdk.fundamentals().getAssetClassification()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| 매개변수         | 타입                  | 필수 여부                | 설명            |
| ------------ | ------------------- | -------------------- | ------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 날짜         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형        |

<div id="response">
  ### 응답
</div>

**[GetAssetClassificationV21Response](../../models/operations/GetAssetClassificationV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getearningsreports">
  ## getEarningsReports
</div>

실적 보고서 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetEarningsReportsV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetEarningsReportsV21Response res = sdk.fundamentals().getEarningsReports()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| 매개변수         | 타입                  | 필수 여부                | 설명            |
| ------------ | ------------------- | -------------------- | ------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형        |

<div id="response">
  ### 응답
</div>

**[GetEarningsReportsV21Response](../../models/operations/GetEarningsReportsV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getfinancialsv21">
  ## getFinancialsV21
</div>

재무제표 v2.1 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetFinancialsV21Response;

public class Application {

    public static void main(String[] args) throws BzhttpResp, Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetFinancialsV21Response res = sdk.fundamentals().getFinancialsV21()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.strings().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| 매개변수         | 타입                  | 필수 여부                | 설명            |
| ------------ | ------------------- | -------------------- | ------------- |
| `symbols`    | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | 기준 일자         |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | 기간            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형        |

<div id="response">
  ### 응답
</div>

**[GetFinancialsV21Response](../../models/operations/GetFinancialsV21Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 타입           |
| -------------------------- | -------- | ---------------- |
| models/errors/BzhttpResp   | 400, 500 | application/json |
| models/errors/APIException | 4XX, 5XX | */*              |

<div id="getv3">
  ## getV3
</div>

기초 재무 지표 V3 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFundamentalsV3Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetFundamentalsV3Response res = sdk.fundamentals().getV3()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2024-10-27")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

<div id="parameters">
  ### Parameters
</div>

| Parameter | Type                | Required             | Description   |
| --------- | ------------------- | -------------------- | ------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | 시작일           |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | 종료일           |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | 리포트 유형        |

<div id="response">
  ### 응답
</div>

**[GetFundamentalsV3Response](../../models/operations/GetFundamentalsV3Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getbalancesheetv3">
  ## getBalanceSheetV3
</div>

대차대조표 v3 조회

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetBalanceSheetV3Response;

public class Application {

    public static void main(String[] args) throws BzhttpResp, Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetBalanceSheetV3Response res = sdk.fundamentals().getBalanceSheetV3()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2023-12-25")
                .call();

        if (res.strings().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| Parameter | Type                | Required             | Description    |
| --------- | ------------------- | -------------------- | -------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | 심볼(쉼표로 구분된 목록) |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | 시작일            |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | 종료일            |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형         |

<div id="response">
  ### 응답
</div>

**[GetBalanceSheetV3Response](../../models/operations/GetBalanceSheetV3Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형           |
| -------------------------- | -------- | ---------------- |
| models/errors/BzhttpResp   | 400      | application/json |
| models/errors/APIException | 4XX, 5XX | */*              |

<div id="getcashflowv3">
  ## getCashFlowV3
</div>

현금흐름 v3 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetCashFlowV3Response;

public class Application {

    public static void main(String[] args) throws BzhttpResp, Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetCashFlowV3Response res = sdk.fundamentals().getCashFlowV3()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2024-05-15")
                .call();

        if (res.strings().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 파라미터

| Parameter | Type                | Required             | Description   |
| --------- | ------------------- | -------------------- | ------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | 콤마로 구분된 심볼 목록 |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | 시작일           |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | 종료일           |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형        |

<div id="response">
  ### 응답
</div>

**[GetCashFlowV3Response](../../models/operations/GetCashFlowV3Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형           |
| -------------------------- | -------- | ---------------- |
| models/errors/BzhttpResp   | 400, 500 | application/json |
| models/errors/APIException | 4XX, 5XX | */*              |

<div id="getincomestatement">
  ## getIncomeStatement
</div>

손익계산서 v3 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetIncomeStatementV3Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetIncomeStatementV3Response res = sdk.fundamentals().getIncomeStatement()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2023-12-17")
                .call();

        if (res.string().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| 매개변수      | Type                | 필수 여부                | 설명            |
| --------- | ------------------- | -------------------- | ------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | 콤마로 구분된 심볼 목록 |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | 시작일           |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | 종료일           |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | 보고 유형         |

<div id="response">
  ### 응답
</div>

**[GetIncomeStatementV3Response](../../models/operations/GetIncomeStatementV3Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 타입 |
| -------------------------- | -------- | ------ |
| models/errors/APIException | 4XX, 5XX | */*    |

<div id="getsharepriceratios">
  ## getSharePriceRatios
</div>

주가 비율 가져오기

<div id="example-usage">
  ### 사용 예시
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetSharePriceRatiosV3Response;

public class Application {

    public static void main(String[] args) throws BzhttpResp, Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetSharePriceRatiosV3Response res = sdk.fundamentals().getSharePriceRatios()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2024-06-28")
                .call();

        if (res.strings().isPresent()) {
            // 응답 처리
        }
    }
}
```

### 매개변수

| 매개변수      | 타입                  | 필수 여부                | 설명            |
| --------- | ------------------- | -------------------- | ------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | 쉼표로 구분된 심볼 목록 |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | 시작일           |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | 종료일           |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | 보고서 유형        |

<div id="response">
  ### 응답
</div>

**[GetSharePriceRatiosV3Response](../../models/operations/GetSharePriceRatiosV3Response.md)**

<div id="errors">
  ### 오류
</div>

| 오류 유형                      | 상태 코드    | 콘텐츠 유형           |
| -------------------------- | -------- | ---------------- |
| models/errors/BzhttpResp   | 400, 500 | application/json |
| models/errors/APIException | 4XX, 5XX | */*              |
