ticker.app
Access detailed company information, live share prices, OHLCV chart data, RNS announcements, and broker research for any London Stock Exchange listed company.
ticker-get-company-info/lse/:tidmverified
by samdb
Get detailed issuer information โ name, ISIN, sector, country, exchange, market capitalisation, and more.
Input Schema
{
"type": "object",
"properties": {}
}Annotations
{
"readOnlyHint": "true",
"openWorldHint": "false",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-get-company-price/lse/:tidm
by samdb
Get the current/latest share price. Returns the most recent OHLCV data point.
Input Schema
{
"type": "object",
"properties": {}
}Annotations
{
"readOnlyHint": "true",
"openWorldHint": "false",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-get-company-chart/lse/:tidm
by samdb
Get OHLCV price chart data. Supports periods: 1m, 3m, 6m, 1y, 5y.
Input Schema
{
"type": "object",
"properties": {
"period": {
"type": "string",
"description": "Chart period: 1m, 3m, 6m, 1y, or 5y (default 3m)"
}
}
}Annotations
{
"readOnlyHint": "true",
"openWorldHint": "false",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-get-company-announcements/lse/:tidmverified
by samdb
Get RNS announcements for the company. Includes announcements published by the company and those mentioning it.
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Number of results (default 20, max 50)"
},
"dateTo": {
"type": "string",
"description": "ISO date string to filter to"
},
"dateFrom": {
"type": "string",
"description": "ISO date string to filter from"
}
}
}Annotations
{
"readOnlyHint": "true",
"openWorldHint": "false",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-get-company-research/lse/:tidm
by samdb
Get broker research reports and analyst coverage for the company.
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Number of results (default 20)"
}
}
}Annotations
{
"readOnlyHint": "true",
"openWorldHint": "false",
"idempotentHint": "true",
"destructiveHint": "false"
}Search LSE-listed companies, browse the latest RNS regulatory announcements, and check upcoming financial calendar events across the London Stock Exchange.
ticker-search-company/
by samdb
Search for companies listed on the London Stock Exchange by name, TIDM (ticker symbol), or ISIN. Returns matching issuers with TIDM, name, and ISIN.
Input Schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query โ ticker symbol (e.g. BARC), company name (e.g. Barclays), or ISIN"
}
}
}Annotations
{
"readOnlyHint": "true",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-navigate-to-company/verified
by samdb
Navigate the browser to a company page on Ticker by its TIDM (e.g. BARC navigates to /lse/BARC). Use after searching to view full company details.
Input Schema
{
"type": "object",
"required": [
"tidm"
],
"properties": {
"tidm": {
"type": "string",
"description": "TIDM (Trading Instrument Display Mnemonic) e.g. BARC, NXT"
}
}
}Annotations
{
"readOnlyHint": "false",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-get-latest-rns/verified
by samdb
Get the latest Regulatory News Service (RNS) announcements across all LSE-listed companies. Returns titles, dates, categories, and issuer details.
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Number of results to return (default 20, max 50)"
},
"dateTo": {
"type": "string",
"description": "ISO date string to filter to"
},
"dateFrom": {
"type": "string",
"description": "ISO date string to filter from (e.g. 2026-01-01)"
}
}
}Annotations
{
"readOnlyHint": "true",
"idempotentHint": "true",
"destructiveHint": "false"
}ticker-get-financial-calendar/
by samdb
Get upcoming financial events (earnings, dividends, AGMs, ex-dividend dates) from the Ticker financial calendar.
Input Schema
{
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "ISO date string โ end of date range"
},
"from": {
"type": "string",
"description": "ISO date string โ start of date range"
},
"type": {
"type": "string",
"description": "Event type filter (e.g. earnings, dividend, agm)"
}
}
}Annotations
{
"readOnlyHint": "true",
"idempotentHint": "true",
"destructiveHint": "false"
}