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

import java.lang.Exception;
import org.openapis.openapi.AriesJava;
import org.openapis.openapi.models.operations.GetUserSettingByKeyResponse;

public class Application {

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

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

        GetUserSettingByKeyResponse res = sdk.userSettings().getByKey()
                .category("trading")
                .key("theme")
                .call();

        if (res.oneOf().isPresent()) {
            // handle response
        }
    }
}
"dark"

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')

key
string
required

The specific setting key

Response

User setting retrieved successfully