> ## 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.

# Derived Figures and Ratios

> derivedFiguresAndRatios()

[\< BACK](/sdks/languages/java#derivedfiguresandratios)

## Overview

### Available Operations

* [get](#get) - Get derived figures and ratios V3

## get

Get derived figures and ratios for a list of symbols

### Example Usage

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

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

public class Application {

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

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

        GetDerivedFiguresAndRatiosV3Response res = sdk.derivedFiguresAndRatios().get()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2024-08-12")
                .call();

        if (res.string().isPresent()) {
            // handle response
        }
    }
}
```

### Parameters

| Parameter | Type                | Required             | Description                     |
| --------- | ------------------- | -------------------- | ------------------------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | Comma separated list of symbols |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | From date                       |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | To date                         |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | Report Type                     |

### Response

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

### Errors

| Error Type                 | Status Code | Content Type |
| -------------------------- | ----------- | ------------ |
| models/errors/APIException | 4XX, 5XX    | \*/\*        |
