Skip to content

GET /api/v1/etf/cross-border

Cross-border ETF overseas price and premium data.

Returns overseas price, FX rate, and premium data for cross-border ETFs.

Request

GET /api/v1/etf/cross-border

Headers

HeaderValue
F-API-KEYYour API key

Query Parameters

ParameterTypeRequiredFilterDescription
codestringNoexactFund code
overseas_tickerstringNoexactOverseas ticker
sourcestringNoexactData source
limitintegerNoMax rows per page (default 100, max 1000)
offsetintegerNoRows to skip (default 0)
sortstringNoSort field (default code)
orderasc | descNoSort direction (default asc)

Example

Terminal window
curl -H "F-API-KEY: fk-xxxxx" \
"https://finance-api.xp-java.workers.dev/api/v1/etf/cross-border?code=513050"

Response

{
"code": 0,
"message": "ok",
"data": [
{
"code": "513050",
"overseas_ticker": "QQQ",
"overseas_price": 420.5,
"fx_pair": "USD/CNY",
"fx_rate": 7.2345,
"premium_pct": 1.25,
"source": "exchange",
"updated_at": "2024-12-31T15:30:00Z"
}
],
"meta": {
"total": 1,
"limit": 100,
"offset": 0,
"has_more": false
}
}