Google finance API

A simple and fast API to retrieve Google Finance data

How it works?

https://gfin.gcdev.it/api/{ticker}

Examples

Response

If the ticker is wrong or there's no data, the endpoint returns a 404 status code.

If everything is correct, the response is a 200 status code with the json describing the ticker's data.

JSON schema

{
    "ticker_data": {
        "currentPrice":"$234.93",
        "quote":"AAPL:NASDAQ",
        "title":"Apple Inc"
    },
    "about_panel": {
        "previous_close":"$235.06",
        "day_range":"$233.81 - $235.69",
        "year_range":"$164.08 - $237.49",
        "market_cap":"3.47T USD",
        "avg_volume":"44.11M",
        "p\/e_ratio":"38.62",
        "dividend_yield":"0.43%",
        "primary_exchange":"NASDAQ",
        "ceo":"Tim CookTim Cook",
        "founded":"Apr 1, 1976",
        "headquarters":"Cupertino, CaliforniaUnited States",
        "website":"apple.com",
        "employees":"164,000",
        "description":"Apple Inc. is an American multinational corporation and technology company headquartered and incorporated in Cupertino, California, in Silicon Valley.",
        "extensions":"Stock"
    },
    "finance_performance":{
        "table":{
            "Free cash flow":{
                "Sep 2024infoFiscal Q4 2024 ended 9/28/24. Reported on 10/31/24.":"34.54B",
                "Y/Y change":"180.60%"
            }
        }
    }
}