# Markets Ft — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access comprehensive fund data from Financial Times Markets, including current pricing, performance metrics, holdings, and diversification details in a single tearsheet view. Get detailed fund profiles and investment objectives to quickly evaluate and compare investment opportunities.

**Category:** Finance & Markets | **Website:** [markets.ft.com/data/funds/tearsheet/](https://markets.ft.com/data/funds/tearsheet/) | **Docs:** [parse.bot/marketplace/fb95f985-9460-404a-a377-51a230907acb/markets-ft-com-api](https://parse.bot/marketplace/fb95f985-9460-404a-a377-51a230907acb/markets-ft-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-markets-ft-com-api-fb95f985/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fund_summary

Retrieve a fund's tearsheet summary page from FT Markets. Returns the fund name, current price, daily and annual price changes, a detailed profile (fund type, category, charges, domicile, managers, launch date), top holdings with portfolio weights, asset-type diversification breakdown, and the fund's investment objective. Data is delayed at least 15 minutes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `currency` | string | Yes | Currency code for the fund share class, e.g. EUR, GBP, USD. |
| `isin` | string | Yes | ISIN (International Securities Identification Number) of the fund, e.g. LU0526609390 or GB00B3X7QG63. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-markets-ft-com-api-fb95f985/get_fund_summary \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"currency":"<string>","isin":"<string>"}'
```
