Skip to main content
GET
/
api
/
trader
/
{account_id}
/
export
cURL
curl --request GET \
  --url https://api.production.hyperoru.com/api/trader/{account_id}/export \
  --header 'Authorization: Bearer <token>'
{}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Path Parameters

account_id
integer<int32>
required

Account ID

Response

Trader data export bundle

Generic free-form JSON object used as a fallback response schema for endpoints whose payload is large, deeply nested, or best documented via their narrative description rather than a fixed Rust type.

Named so it shows up as a proper $ref in the generated spec instead of a bare serde_json::Value; clients that want stricter typing should reach for the domain-specific DTOs declared alongside the relevant handler.