# Myfxbook — Zapi reference > Myfxbook community outlook — how the crowd of tracked live accounts is **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/finance/myfxbook - Endpoint catalog: https://zpi.web.id/category/finance - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Myfxbook **Category:** finance · **Slug:** `myfxbook` **Detail page:** https://zpi.web.id/api/finance/myfxbook Myfxbook community outlook — how the crowd of tracked live accounts is **Tags:** finance, myfxbook ### Community Outlook Myfxbook community outlook — how the crowd of tracked live accounts is - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/finance:myfxbook/community-outlook` - **Cache TTL:** 60s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | no | Filter on symbol; the slash is optional. Omit for every symbol | | `limit` | number | query | no | Items to return. Default 100, max 200 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/finance:myfxbook/community-outlook?query=EURUSD&limit=100" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/finance:myfxbook/community-outlook?query=EURUSD&limit=100", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/finance:myfxbook/community-outlook?query=EURUSD&limit=100", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "asOf": "2026-08-21T02:32:50.576Z", "count": 1, "items": [ { "price": 1.16957, "symbol": "EURUSD", "longLots": 4094.43, "shortLots": 15259.68, "longPercent": 21, "avgLongPrice": 1.166, "shortPercent": 79, "avgShortPrice": 1.1479, "longPositions": 12084, "shortPositions": 46813, "netShortPercent": 58, "longDistancePips": 36, "popularityPercent": 58, "shortDistancePips": -217 } ], "query": "EURUSD", "total": 1, "dataset": "community-outlook", "provider": "myfxbook" } ``` --- _Generated: 2026-08-21T07:42:54.446Z_