Skip to main content
GET
/
v1
/
config
/
{category}
/
user-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.GetUserSettingsResponse;

public class Application {

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

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

        GetUserSettingsResponse res = sdk.userSettings().get()
                .category("trading")
                .call();

        if (res.object().isPresent()) {
            // handle response
        }
    }
}
{
  "theme": "dark",
  "auto_trading": true,
  "risk_level": "medium",
  "max_position_size": 10000
}

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

The category of settings (e.g., trading, notifications)

Response

User settings retrieved successfully

The response is of type object.