Yahoo Finance Ticker Search – Company Name to Symbol
Pricing
from $0.50 / 1,000 results
Yahoo Finance Ticker Search – Company Name to Symbol
Don't know the ticker symbol? Type any company name and instantly get the matching Yahoo Finance ticker with exchange info - perfect for automating pipelines. For full stock details, news, real-time prices, and cheapest offers, use: https://apify.com/architjn/yahoo-finance
Pricing
from $0.50 / 1,000 results
Rating
0.0
(0)
Developer
Archit Jain
Maintained by CommunityActor stats
0
Bookmarked
4
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Yahoo Finance Ticker Search | Company Name to Symbol
Look up Yahoo Finance ticker symbols from a company name, keyword, or partial symbol. Each result includes the full symbol (with exchange suffix), company name, and exchange code—ready for stock data pipelines and watchlists.
Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | Company name, ticker, or keyword (e.g. Apple, TSLA, Onward Medical). |
limit | integer | No | 20 | Maximum matches to return (1–50). |
Output
Results are saved to the run dataset—one JSON object per match.
| Field | Description |
|---|---|
symbol | Full ticker with exchange suffix (e.g. AAPL, ONWD.BR) |
shortname | Short company name |
longname | Full legal name when available |
exchange | Exchange code (e.g. NMS = NASDAQ, LSE = London) |
Download as JSON, CSV, or Excel from the dataset tab, or use the Apify API and integrations.
Pricing Structure
Pay per usage — you are charged for Apify compute (runtime, memory) for each run. Lookups are fast; cost is usually small per query.
Examples
Example 1: Company name
Input
{"query": "Apple","limit": 5}
Output
[{ "symbol": "AAPL", "shortname": "Apple Inc.", "exchange": "NMS" },{ "symbol": "AAPL.L", "shortname": "Apple Inc.", "exchange": "LSE" }]
Example 2: Partial symbol across exchanges
Input
{"query": "ONWD","limit": 10}
Output: Multiple listings such as ONWD.BR, ONWD-GB with exchange codes.
Example 3: Single best match
Input: { "query": "Microsoft", "limit": 1 }
Output: One row—useful when you only need the primary US listing.
Best Practices
- Use the full
symbol(with suffix) in downstream actors—bare symbols likeONWDmay not resolve. - Check
exchange— pickNMSfor US NASDAQ,NYQfor NYSE,LSEfor London, etc. limit: 10–20is enough for most lookups; lower limits keep runs faster.- Disambiguate common names (
FordvsFord Motor Credit) by adding industry keywords toquery. - Chain to a Yahoo Finance stock data actor using the returned
symbolfor prices and fundamentals.
Next step
After you have ticker symbols, fetch prices, financials, news, and historical data with a full Yahoo Finance stock actor on Apify.