Jasmine International Public Company Limited
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1727654400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://jas.listedcompany.com/newsroom/131120242121330723E.pdf",
"holding_balance": 333.5,
"holding_net_change": 333.5,
"transaction_value_usd": 20509635.0,
"average_entry_value_usd": 61498.16,
"transaction_value_calculated": false
},
{
"date": 1735603200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://weblink.set.or.th/dat/news/202502/0418NWS260220252030270019E.pdf",
"holding_balance": 506.4,
"holding_net_change": 173.0,
"transaction_value_usd": 17301187.0,
"average_entry_value_usd": 100006.86,
"transaction_value_calculated": false
},
{
"date": 1751241600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://core.shareinvestor.app/documents/viewer/jas/financials/0418FIN130820252109440073E/NOTES.DOC",
"holding_balance": 8.66,
"holding_net_change": -497.79,
"transaction_value_usd": 53364715.77330001,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
8.66
],
[
1788998400000,
8.66
],
[
1789084800000,
8.66
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
679392.3282
],
[
1788998400000,
677974.3398
],
[
1789084800000,
663500.4487999999
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.9,
"date": "2026-09-08",
"high": 0.92,
"open": 0.9,
"close": 0.9,
"volume": 9653141
},
{
"low": 0.89,
"date": "2026-09-09",
"high": 0.91,
"open": 0.91,
"close": 0.89,
"volume": 8408698
},
{
"low": 0.89,
"date": "2026-09-10",
"high": 0.91,
"open": 0.89,
"close": 0.89,
"volume": 6985206
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 8.325,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -16.04,
"six_month_return": -25.21,
"three_month_return": -23.28
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/jasmine-international-public-company-limited/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.0,
"total_btc_percentage": 0.0,
"share_price_change_state": "up"
}