Skip to main content
GET
/
v1
/
config
/
{category}
/
settings
Java (SDK)
package hello.world;

import java.lang.Exception;
import org.openapis.openapi.AriesJava;
import org.openapis.openapi.models.errors.ErrorResponse;
import org.openapis.openapi.models.operations.GetSettingsResponse;

public class Application {

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

        AriesJava sdk = AriesJava.builder()
                .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
            .build();

        GetSettingsResponse res = sdk.settings().getAll()
                .category("feature-flags")
                .call();

        if (res.object().isPresent()) {
            // handle response
        }
    }
}
{
  "new_ui_enabled": true,
  "beta_features": false,
  "maintenance_mode": false
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

category
string
required

Category of the setting (e.g., 'display', 'trading', 'notifications')

Response

Global settings retrieved successfully

The response is of type object.