{"openapi":"3.1.0","info":{"title":"Dataglade API","description":"Access Dataglade's fundamental and market data using the Dataglade API.","contact":{"name":"Dataglade Support","url":"https://dataglade.com/","email":"support@dataglade.com"},"version":"2024.10.29"},"servers":[{"url":"https://api.dataglade.com","description":"Release Version"}],"paths":{"/equity/{symbol}/quote":{"get":{"tags":["Equities"],"summary":"Get quote","operationId":"Get_latest_quote_equity__symbol__quote_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_Quote__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/prices":{"get":{"tags":["Equities"],"summary":"Historical prices","description":"Get OHLCV time intervals for a symbol in a specified window. The range can be specified by start and end UNIX timestamps, The interval can be specified using:\n- `z`, which can be `d` for day, `h` for hour, `m` for minute, or `s` for second.\n- `n`, which is the length of the interval.\n\nFor example, to fetch 5 second intervals, you would set `z` to `s` and `n` to `5`. To fetch 15 minute intervals, you would set `z` to `m` and `n` to `15`.","operationId":"Get_symbol_prices_equity__symbol__prices_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}},{"name":"start","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"The start timestamp for the chart window. This should be a UNIX timestamp.","title":"Start"},"description":"The start timestamp for the chart window. This should be a UNIX timestamp."},{"name":"end","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"The start timestamp for the chart window. This should be a UNIX timestamp.","title":"End"},"description":"The start timestamp for the chart window. This should be a UNIX timestamp."},{"name":"z","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"The interval of the chart window. Can be d, h, m, or s for day, hour, minute, second.","title":"Z"},"description":"The interval of the chart window. Can be d, h, m, or s for day, hour, minute, second."},{"name":"n","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"The number of intervals to fetch.","title":"N"},"description":"The number of intervals to fetch."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_TimeInterval__"}}},"message":"Success","data":{"chart":"The stock price chart"}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/fundamentals/{statement}":{"get":{"tags":["Equities"],"summary":"Fundamentals for symbol","operationId":"Fundamentals_equity__symbol__fundamentals__statement__get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}},{"name":"statement","in":"path","required":true,"schema":{"$ref":"#/components/schemas/StatementType"}},{"name":"start","in":"query","required":false,"schema":{"type":"string","description":"The start period for the statement. Format: `YYYY` or `YYYYQn` (eg `2024Q1`) if fetching quarterly statements.","title":"Start"},"description":"The start period for the statement. Format: `YYYY` or `YYYYQn` (eg `2024Q1`) if fetching quarterly statements."},{"name":"end","in":"query","required":false,"schema":{"type":"string","description":"The end period for the statement. Format: `YYYY` or `YYYYQn` (eg `2024Q1`) if fetching quarterly statements.","title":"End"},"description":"The end period for the statement. Format: `YYYY` or `YYYYQn` (eg `2024Q1`) if fetching quarterly statements."},{"name":"quarterly","in":"query","required":false,"schema":{"type":"boolean","description":"Whether to fetch quarterly statements instead of annual. Default is `false`, which gets annual statements. This takes precedence over the `start` and `end` parameters, ie if `quarterly` is `true`, and `start` is 2020, the first period fetched will be 2020Q1.","default":false,"title":"Quarterly"},"description":"Whether to fetch quarterly statements instead of annual. Default is `false`, which gets annual statements. This takes precedence over the `start` and `end` parameters, ie if `quarterly` is `true`, and `start` is 2020, the first period fetched will be 2020Q1."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_Union_BalanceSheet__CashFlowStatement__IncomeStatement__AllFundamentals___"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/earnings":{"get":{"tags":["Equities"],"summary":"Get upcoming and historical earnings for symbol","operationId":"Get_earnings_equity__symbol__earnings_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_Earnings__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/analysis":{"get":{"tags":["Equities"],"summary":"Get segment KPIs from latest transcript","operationId":"Get_segment_KPIs_equity__symbol__analysis_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_Metric__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/transcripts":{"get":{"tags":["Equities"],"summary":"List available transcripts","description":"Get a list of the periods for which earnings call transcripts are available. Periods are returned ordered from newest available to oldest.","operationId":"List_transcripts_equity__symbol__transcripts_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_str__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/transcripts/latest":{"get":{"tags":["Equities"],"summary":"Get the latest transcript","operationId":"Get_latest_transcript_equity__symbol__transcripts_latest_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_CallTranscript_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/transcripts/{period}":{"get":{"tags":["Equities"],"summary":"Get a transcript for a given period","operationId":"Get_transcript_equity__symbol__transcripts__period__get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}},{"name":"period","in":"path","required":true,"schema":{"type":"string","title":"Period"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_CallTranscript_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/owners":{"get":{"tags":["Equities"],"summary":"Get owners of symbol","operationId":"Get_owners_equity__symbol__owners_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_Owner__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/etf_holdings":{"get":{"tags":["Holdings"],"summary":"ETF Holdings","operationId":"Get_ETF_holdings_equity__symbol__etf_holdings_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}},"message":"Success","data":{"holdings":"The ETF holdings"}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/etf_debt_holdings":{"get":{"tags":["Holdings"],"summary":"ETF Debt Holdings","operationId":"Get_ETF_debt_holdings_equity__symbol__etf_debt_holdings_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_DebtHolding__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/etf_holders":{"get":{"tags":["Holdings"],"summary":"ETF Holders","operationId":"Get_ETF_holders_equity__symbol__etf_holders_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}},"message":"Success","data":{"holders":"The ETF holders"}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/equity/{symbol}/insider-trades":{"get":{"tags":["Equities"],"summary":"Get insider trades for symbol","operationId":"Insider_Trades_equity__symbol__insider_trades_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Symbol"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResponseModel_List_InsiderTrade__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/yields/treasury/{ttm}":{"get":{"summary":"Get treasury yields","operationId":"get_treasury_yields_yields_treasury__ttm__get","parameters":[{"name":"ttm","in":"path","required":true,"schema":{"type":"string","title":"Ttm"}},{"name":"start","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Start"}},{"name":"end","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"x-api-key","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/yields/treasury":{"get":{"summary":"Get all treasury yields","operationId":"get_all_treasury_yields_yields_treasury_get","parameters":[{"name":"start","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Start"}},{"name":"end","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"x-api-key","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/yields/sofr":{"get":{"summary":"Get all SOFR rates","operationId":"get_all_sofr_rates_yields_sofr_get","parameters":[{"name":"start","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Start"}},{"name":"end","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"x-api-key","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/yields/term-sofr/{terms}":{"get":{"summary":"Get term SOFR rates","operationId":"get_term_sofr_rates_yields_term_sofr__terms__get","parameters":[{"name":"terms","in":"path","required":true,"schema":{"type":"string","title":"Terms"}},{"name":"start","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"default":"2020-09-18","title":"Start"}},{"name":"end","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"x-api-key","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/yields/term-sofr":{"get":{"summary":"Get all term SOFR rates","operationId":"get_all_term_sofr_rates_yields_term_sofr_get","parameters":[{"name":"start","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"default":"2020-09-18","title":"Start"}},{"name":"end","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"x-api-key","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Api-Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/":{"get":{"tags":["Status"],"summary":"Check the status of the API","description":"Get the current status of the API. You can use this endpoint to test and debug your connection.","operationId":"Check_API_status__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}},"security":[{"HTTPBearer":[]}]}}},"components":{"schemas":{"AllFundamentals":{"properties":{"ticker":{"type":"string","title":"Ticker","description":"Stock ticker symbol","example":"AAPL"},"period":{"type":"string","title":"Period","description":"Fiscal period","example":"2023FY"},"balance":{"$ref":"#/components/schemas/BalanceSheet","description":"Balance sheet data"},"cashflow":{"$ref":"#/components/schemas/CashFlowStatement","description":"Cash flow statement data"},"income":{"$ref":"#/components/schemas/IncomeStatement","description":"Income statement data"}},"type":"object","required":["ticker","period","balance","cashflow","income"],"title":"AllFundamentals"},"BalanceSheet":{"properties":{"ticker":{"type":"string","title":"Ticker","description":"Stock ticker symbol","example":"AAPL"},"period":{"type":"string","title":"Period","description":"Fiscal period","example":"2023FY"},"accountPayables":{"type":"integer","title":"Accountpayables","description":"Total account payables","example":62611000000},"accumulatedOtherComprehensiveIncomeLoss":{"type":"integer","title":"Accumulatedothercomprehensiveincomeloss","description":"Accumulated other comprehensive income or loss","example":-11452000000},"capitalLeaseObligations":{"type":"integer","title":"Capitalleaseobligations","description":"Capital lease obligations","example":12842000000},"cashAndCashEquivalents":{"type":"integer","title":"Cashandcashequivalents","description":"Total cash and cash equivalents","example":29965000000},"cashAndShortTermInvestments":{"type":"integer","title":"Cashandshortterminvestments","description":"Cash and short-term investments","example":61555000000},"commonStock":{"type":"integer","title":"Commonstock","description":"Common stock","example":73812000000},"fillingDate":{"type":"string","title":"Fillingdate","description":"Date of the financial statement","example":"2023-09-30"},"deferredRevenue":{"type":"integer","title":"Deferredrevenue","description":"Deferred revenue","example":8061000000},"deferredRevenueNonCurrent":{"type":"integer","title":"Deferredrevenuenoncurrent","description":"Deferred revenue non-current","example":0},"deferrredTaxLiabilitiesNonCurrent":{"type":"integer","title":"Deferrredtaxliabilitiesnoncurrent","description":"Deferred non-current tax liabilities","example":0},"effective_date":{"type":"string","title":"Effective Date","description":"Effective date of the financial statement","example":"2023-11-03"},"goodwill":{"type":"integer","title":"Goodwill","description":"Total goodwill","example":0},"goodwillAndIntangibleAssets":{"type":"integer","title":"Goodwillandintangibleassets","description":"Total goodwill and intangible assets","example":0},"intangibleAssets":{"type":"integer","title":"Intangibleassets","description":"Total intangible assets","example":0},"inventory":{"type":"integer","title":"Inventory","description":"Total inventory","example":6331000000},"longTermDebt":{"type":"integer","title":"Longtermdebt","description":"Total long-term debt","example":106548000000},"longTermInvestments":{"type":"integer","title":"Longterminvestments","description":"Total long-term investments","example":100544000000},"minorityInterest":{"type":"integer","title":"Minorityinterest","description":"Minority interest","example":0},"netDebt":{"type":"integer","title":"Netdebt","description":"Net debt","example":93965000000},"netReceivables":{"type":"integer","title":"Netreceivables","description":"Net receivables","example":60985000000},"otherAssets":{"type":"integer","title":"Otherassets","description":"Other assets","example":0},"otherCurrentAssets":{"type":"integer","title":"Othercurrentassets","description":"Other current assets","example":14695000000},"otherCurrentLiabilities":{"type":"integer","title":"Othercurrentliabilities","description":"Other current liabilities","example":57254000000},"otherLiabilities":{"type":"integer","title":"Otherliabilities","description":"Other liabilities","example":0},"otherNonCurrentAssets":{"type":"integer","title":"Othernoncurrentassets","description":"Other non-current assets","example":36245000000},"otherNonCurrentLiabilities":{"type":"integer","title":"Othernoncurrentliabilities","description":"Other non-current liabilities","example":38581000000},"othertotalStockholdersEquity":{"type":"integer","title":"Othertotalstockholdersequity","description":"Other total stockholders' equity","example":0},"preferredStock":{"type":"integer","title":"Preferredstock","description":"Preferred stock","example":0},"propertyPlantEquipmentNet":{"type":"integer","title":"Propertyplantequipmentnet","description":"Net property, plant, and equipment","example":54376000000},"reportedCurrency":{"type":"string","title":"Reportedcurrency","description":"Reported currency","example":"USD"},"retainedEarnings":{"type":"integer","title":"Retainedearnings","description":"Retained earnings","example":-214000000},"shortTermDebt":{"type":"integer","title":"Shorttermdebt","description":"Short-term debt","example":17382000000},"shortTermInvestments":{"type":"integer","title":"Shortterminvestments","description":"Short-term investments","example":31590000000},"taxAssets":{"type":"integer","title":"Taxassets","description":"Tax assets","example":17852000000},"taxPayables":{"type":"integer","title":"Taxpayables","description":"Tax payables","example":8819000000},"totalAssets":{"type":"integer","title":"Totalassets","description":"Total assets","example":352583000000},"totalCurrentAssets":{"type":"integer","title":"Totalcurrentassets","description":"Total current assets","example":143566000000},"totalCurrentLiabilities":{"type":"integer","title":"Totalcurrentliabilities","description":"Total current liabilities","example":145308000000},"totalDebt":{"type":"integer","title":"Totaldebt","description":"Total debt","example":123930000000},"totalEquity":{"type":"integer","title":"Totalequity","description":"Total equity","example":62146000000},"totalInvestments":{"type":"integer","title":"Totalinvestments","description":"Total investments","example":132134000000},"totalLiabilities":{"type":"integer","title":"Totalliabilities","description":"Total liabilities","example":290437000000},"totalLiabilitiesAndStockholdersEquity":{"type":"integer","title":"Totalliabilitiesandstockholdersequity","description":"Total liabilities and stockholders' equity","example":352583000000},"totalNonCurrentAssets":{"type":"integer","title":"Totalnoncurrentassets","description":"Total non-current assets","example":209017000000},"totalNonCurrentLiabilities":{"type":"integer","title":"Totalnoncurrentliabilities","description":"Total non-current liabilities","example":145129000000},"totalStockholdersEquity":{"type":"integer","title":"Totalstockholdersequity","description":"Total stockholders' equity","example":62146000000}},"type":"object","required":["ticker","period","accountPayables","accumulatedOtherComprehensiveIncomeLoss","capitalLeaseObligations","cashAndCashEquivalents","cashAndShortTermInvestments","commonStock","fillingDate","deferredRevenue","deferredRevenueNonCurrent","deferrredTaxLiabilitiesNonCurrent","effective_date","goodwill","goodwillAndIntangibleAssets","intangibleAssets","inventory","longTermDebt","longTermInvestments","minorityInterest","netDebt","netReceivables","otherAssets","otherCurrentAssets","otherCurrentLiabilities","otherLiabilities","otherNonCurrentAssets","otherNonCurrentLiabilities","othertotalStockholdersEquity","preferredStock","propertyPlantEquipmentNet","reportedCurrency","retainedEarnings","shortTermDebt","shortTermInvestments","taxAssets","taxPayables","totalAssets","totalCurrentAssets","totalCurrentLiabilities","totalDebt","totalEquity","totalInvestments","totalLiabilities","totalLiabilitiesAndStockholdersEquity","totalNonCurrentAssets","totalNonCurrentLiabilities","totalStockholdersEquity"],"title":"BalanceSheet"},"CallMetadata":{"properties":{"symbol":{"type":"string","title":"Symbol","description":"Stock symbol","example":"AAPL"},"date":{"type":"string","title":"Date","description":"The date in YYYY-MM-DD format.","example":"2019-07-30"},"quarter":{"type":"integer","title":"Quarter","description":"Fiscal quarter of report.","example":3},"year":{"type":"integer","title":"Year","description":"Fiscal year of report.","example":2019}},"type":"object","required":["symbol","date","quarter","year"],"title":"CallMetadata"},"CallTranscript":{"properties":{"content":{"type":"string","title":"Content","description":"The raw text transcript of the earnings call."},"metadata":{"$ref":"#/components/schemas/CallMetadata","description":"Metadata related to the call transcript."}},"type":"object","required":["content","metadata"],"title":"CallTranscript"},"CashFlowStatement":{"properties":{"ticker":{"type":"string","title":"Ticker","description":"Stock ticker symbol","example":"AAPL"},"period":{"type":"string","title":"Period","description":"Fiscal period","example":"2023FY"},"acceptedDate":{"type":"string","title":"Accepteddate","description":"Accepted date of the filing","example":"2023-11-02 18:08:27"},"accountsPayables":{"type":"integer","title":"Accountspayables","description":"Total accounts payables","example":-1889000000},"accountsReceivables":{"type":"integer","title":"Accountsreceivables","description":"Total accounts receivables","example":-1688000000},"acquisitionsNet":{"type":"integer","title":"Acquisitionsnet","description":"Net acquisitions","example":0},"calendarYear":{"type":"integer","title":"Calendaryear","description":"Calendar year","example":2023},"capitalExpenditure":{"type":"integer","title":"Capitalexpenditure","description":"Capital expenditure","example":-10959000000},"cashAtBeginningOfPeriod":{"type":"integer","title":"Cashatbeginningofperiod","description":"Cash at the beginning of the period","example":24977000000},"cashAtEndOfPeriod":{"type":"integer","title":"Cashatendofperiod","description":"Cash at the end of the period","example":30737000000},"changeInWorkingCapital":{"type":"integer","title":"Changeinworkingcapital","description":"Change in working capital","example":-6577000000},"cik":{"type":"string","title":"Cik","description":"Central Index Key","example":"0000320193"},"commonStockIssued":{"type":"integer","title":"Commonstockissued","description":"Common stock issued","example":0},"commonStockRepurchased":{"type":"integer","title":"Commonstockrepurchased","description":"Common stock repurchased","example":-82981000000},"fillingDate":{"type":"string","title":"Fillingdate","description":"Date of the financial statement","example":"2023-09-30"},"debtRepayment":{"type":"integer","title":"Debtrepayment","description":"Debt repayment","example":-5923000000},"deferredIncomeTax":{"type":"integer","title":"Deferredincometax","description":"Deferred income tax","example":0},"depreciationAndAmortization":{"type":"integer","title":"Depreciationandamortization","description":"Depreciation and amortization","example":11519000000},"dividendsPaid":{"type":"integer","title":"Dividendspaid","description":"Dividends paid","example":-15025000000},"effective_date":{"type":"string","title":"Effective Date","description":"Effective date","example":"2023-11-03"},"effectOfForexChangesOnCash":{"type":"integer","title":"Effectofforexchangesoncash","description":"Effect of forex changes on cash","example":0},"freeCashFlow":{"type":"integer","title":"Freecashflow","description":"Free cash flow","example":99584000000},"inventory":{"type":"integer","title":"Inventory","description":"Inventory","example":-1618000000},"investmentsInPropertyPlantAndEquipment":{"type":"integer","title":"Investmentsinpropertyplantandequipment","description":"Investments in property, plant, and equipment","example":-10959000000},"netCashProvidedByOperatingActivites":{"type":"integer","title":"Netcashprovidedbyoperatingactivites","description":"Net cash provided by operating activities","example":107504000000},"netCashUsedForInvestingActivites":{"type":"integer","title":"Netcashusedforinvestingactivites","description":"Net cash used for investing activities","example":-11153000000},"netCashUsedProvidedByFinancingActivities":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Netcashusedprovidedbyfinancingactivities","description":"Net cash used or provided by financing activities","example":-73490000000},"netChangeInCash":{"type":"integer","title":"Netchangeincash","description":"Net change in cash","example":5760000000},"otherFinancingActivites":{"type":"integer","title":"Otherfinancingactivites","description":"Other financing activities","example":0},"otherInvestingActivites":{"type":"integer","title":"Otherinvestingactivites","description":"Other investing activities","example":0},"otherNonCashItems":{"type":"integer","title":"Othernoncashitems","description":"Other non-cash items","example":0},"otherWorkingCapital":{"type":"integer","title":"Otherworkingcapital","description":"Other working capital","example":0}},"type":"object","required":["ticker","period","acceptedDate","accountsPayables","accountsReceivables","acquisitionsNet","calendarYear","capitalExpenditure","cashAtBeginningOfPeriod","cashAtEndOfPeriod","changeInWorkingCapital","cik","commonStockIssued","commonStockRepurchased","fillingDate","debtRepayment","deferredIncomeTax","depreciationAndAmortization","dividendsPaid","effective_date","effectOfForexChangesOnCash","freeCashFlow","inventory","investmentsInPropertyPlantAndEquipment","netCashProvidedByOperatingActivites","netCashUsedForInvestingActivites","netCashUsedProvidedByFinancingActivities","netChangeInCash","otherFinancingActivites","otherInvestingActivites","otherNonCashItems","otherWorkingCapital"],"title":"CashFlowStatement"},"DebtHolding":{"properties":{"holdingId":{"type":"integer","title":"Holdingid","description":"Unique identifier for the holding","example":128666697},"issuerName":{"type":"string","title":"Issuername","description":"Name of the issuer","example":"Vita Capital VI Ltd"},"issuerTitle":{"type":"string","title":"Issuertitle","description":"Title of the issuer","example":"Vita Capital VI 2021-1 Class B"},"issuerCusip":{"type":"string","title":"Issuercusip","description":"CUSIP of the issuer","example":"92846DAB2"},"maturityDate":{"type":"string","title":"Maturitydate","description":"Maturity date","example":"8-Jan-26"},"couponType":{"type":"string","title":"Coupontype","description":"Type of coupon","example":"Floating"},"annualizedRate":{"type":"number","title":"Annualizedrate","description":"Annualized rate of the coupon","example":8.4535},"isDefault":{"type":"boolean","title":"Isdefault","description":"Indicates if the security is in default","example":false},"areAnyInterestPayment":{"type":"boolean","title":"Areanyinterestpayment","description":"Indicates if any interest payments are due","example":false},"isAnyPortionInterestPaid":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Isanyportioninterestpaid","description":"Indicates if any portion of interest is paid","example":false},"isConvertibleMandatory":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Isconvertiblemandatory","description":"Indicates if it is mandatorily convertible","example":false},"isConvertibleContingent":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Isconvertiblecontingent","description":"Indicates if it is contingently convertible","example":false},"balance":{"type":"integer","title":"Balance","description":"Balance of the holding","example":9482000},"unit":{"type":"string","title":"Unit","description":"Unit of the holding","example":"PA"},"currencyCode":{"type":"string","title":"Currencycode","description":"Currency code","example":"USD"},"currencyValue":{"type":"number","title":"Currencyvalue","description":"Value in the specified currency","example":0.95},"exchangeRate":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Exchangerate","description":"Exchange rate applicable"},"percentage":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Percentage","description":"Percentage representation","example":3.09e-08},"payoffProfile":{"type":"string","title":"Payoffprofile","description":"Payoff profile of the security","example":"Long"},"assetCategory":{"type":"string","title":"Assetcategory","description":"Asset category","example":"DBT"},"issuerType":{"type":"string","title":"Issuertype","description":"Type of the issuer","example":"CORP"},"investmentCountry":{"type":"string","title":"Investmentcountry","description":"Country of investment","example":"KY"},"isRestrictedSecurity":{"type":"boolean","title":"Isrestrictedsecurity","description":"Indicates if it is a restricted security","example":true}},"type":"object","required":["holdingId","issuerName","issuerTitle","issuerCusip","maturityDate","couponType","annualizedRate","isDefault","areAnyInterestPayment","balance","unit","currencyCode","currencyValue","payoffProfile","assetCategory","issuerType","investmentCountry","isRestrictedSecurity"],"title":"DebtHolding"},"Earnings":{"properties":{"ticker":{"type":"string","title":"Ticker","description":"Stock ticker symbol","example":"AAPL"},"date":{"type":"string","title":"Date","description":"Report date","example":"2024-10-25"},"eps":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Eps","description":"Earnings per share","example":1.46},"epsEstimated":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Epsestimated","description":"Expected earnings per share","example":1.39}},"type":"object","required":["ticker","date"],"title":"Earnings"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"IncomeStatement":{"properties":{"ticker":{"type":"string","title":"Ticker","description":"Stock ticker symbol","example":"AAPL"},"period":{"type":"string","title":"Period","description":"Fiscal period","example":"2023FY"},"cik":{"type":"string","title":"Cik","description":"Central Index Key","example":"0000320193"},"revenue":{"type":"integer","title":"Revenue","description":"The total revenue."},"grossProfit":{"type":"integer","title":"Grossprofit","description":"The gross profit."},"operatingIncome":{"type":"integer","title":"Operatingincome","description":"The operating income."},"netIncome":{"type":"integer","title":"Netincome","description":"The net income."},"operatingExpenses":{"type":"integer","title":"Operatingexpenses","description":"The total operating expenses."},"costOfRevenue":{"type":"integer","title":"Costofrevenue","description":"The cost of revenue."},"incomeBeforeTax":{"type":"integer","title":"Incomebeforetax","description":"The income before tax."},"incomeTaxExpense":{"type":"integer","title":"Incometaxexpense","description":"The income tax expense."},"interestExpense":{"type":"integer","title":"Interestexpense","description":"The interest expense."},"depreciationAndAmortization":{"type":"integer","title":"Depreciationandamortization","description":"The total depreciation and amortization."},"EBITDA":{"type":"integer","title":"Ebitda","description":"The earnings before interest, taxes, depreciation, and amortization."},"EPS":{"type":"number","title":"Eps","description":"Earnings per share."},"EPSDiluted":{"type":"number","title":"Epsdiluted","description":"Diluted earnings per share."}},"type":"object","required":["ticker","period","cik","revenue","grossProfit","operatingIncome","netIncome","operatingExpenses","costOfRevenue","incomeBeforeTax","incomeTaxExpense","interestExpense","depreciationAndAmortization","EBITDA","EPS","EPSDiluted"],"title":"IncomeStatement"},"InsiderTrade":{"properties":{"ticker":{"type":"string","title":"Ticker","description":"Stock ticker symbol","example":"AAPL"},"tradeDate":{"type":"string","title":"Tradedate","description":"Date of the trade","example":"2024-10-25"},"insiderName":{"type":"string","title":"Insidername","description":"Name of the insider","example":"CHRIS KONDO"},"insiderCIK":{"type":"string","title":"Insidercik","description":"CIK of the insider","example":"0000320193"},"action":{"type":"string","title":"Action","description":"Action taken by the insider","example":"Sell"},"volume":{"type":"integer","title":"Volume","description":"Number of shares traded","example":3985},"price":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Price","description":"Price per share","example":233.85},"value":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Value","description":"Total value of the trade in USD","example":900000}},"type":"object","required":["ticker","tradeDate","insiderName","insiderCIK","action","volume"],"title":"InsiderTrade"},"Metric":{"properties":{"label":{"type":"string","title":"Label","example":"Total Revenue"},"category":{"type":"string","title":"Category","example":"Revenue"},"value":{"anyOf":[{"type":"integer"},{"type":"number"}],"title":"Value","example":85.8},"unit":{"type":"string","title":"Unit","example":"billion USD"}},"type":"object","required":["label","category","value","unit"],"title":"Metric"},"Owner":{"properties":{"name":{"type":"string","title":"Name","description":"Conformed name of owner","example":"SPDR S&P 500 ETF TRUST"},"reportDate":{"type":"string","title":"Reportdate","description":"Report date","example":"2024-06-30"},"sharesHeld":{"type":"integer","title":"Sharesheld","description":"Shares held","example":170000000},"changeInShares":{"type":"integer","title":"Changeinshares","description":"Change in shares held","example":-6473253},"portfolioWeight":{"type":"number","title":"Portfolioweight","description":"Weight in owner portfolio as a decimal","example":0.0416}},"type":"object","required":["name","reportDate","sharesHeld","changeInShares","portfolioWeight"],"title":"Owner"},"Quote":{"properties":{"symbol":{"type":"string","title":"Symbol","description":"The stock symbol","example":"AAPL"},"name":{"type":"string","title":"Name","description":"A displayable name for the company.","example":"Apple Inc."},"price":{"type":"number","title":"Price","description":"The current stock price","example":235.86},"changesPercentage":{"type":"number","title":"Changespercentage","description":"The percentage change in stock price.","example":-0.2622},"change":{"type":"number","title":"Change","description":"The change in stock price for the day.","example":-0.62},"dayLow":{"type":"number","title":"Daylow","description":"The lowest price of the day.","example":232.61},"dayHigh":{"type":"number","title":"Dayhigh","description":"The highest price of the day.","example":236.19},"yearHigh":{"type":"number","title":"Yearhigh","description":"The highest price of the year.","example":237.49},"yearLow":{"type":"number","title":"Yearlow","description":"The lowest price of the year.","example":164.08},"marketCap":{"type":"integer","title":"Marketcap","description":"The market capitalization, based on the latest quote.","example":3586039026000},"priceAvg50":{"type":"number","title":"Priceavg50","description":"The 50-day average price.","example":225.9344},"priceAvg200":{"type":"number","title":"Priceavg200","description":"The 200-day average price.","example":200.1021},"volume":{"type":"integer","title":"Volume","description":"The trading volume for the day.","example":34958938},"avgVolume":{"type":"integer","title":"Avgvolume","description":"The average trading volume.","example":51003768},"open":{"type":"number","title":"Open","description":"The day's opening price.","example":233.885},"previousClose":{"type":"number","title":"Previousclose","description":"The last closing price.","example":236.48},"eps":{"type":"number","title":"Eps","description":"Last reported earnings per share.","example":6.57},"pe":{"type":"number","title":"Pe","description":"Price-to-earnings ratio, as of the last reported earnings per share.","example":35.9},"sharesOutstanding":{"type":"integer","title":"Sharesoutstanding","description":"Number of shares outstanding","example":15204100000},"timestamp":{"type":"integer","title":"Timestamp","description":"UNIX Timestamp of the quote","example":1729627201}},"type":"object","required":["symbol","name","price","changesPercentage","change","dayLow","dayHigh","yearHigh","yearLow","marketCap","priceAvg50","priceAvg200","volume","avgVolume","open","previousClose","eps","pe","sharesOutstanding","timestamp"],"title":"Quote"},"ResponseModel_CallTranscript_":{"properties":{"data":{"anyOf":[{"$ref":"#/components/schemas/CallTranscript"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[CallTranscript]"},"ResponseModel_List_DebtHolding__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/DebtHolding"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[DebtHolding]]"},"ResponseModel_List_Earnings__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/Earnings"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[Earnings]]"},"ResponseModel_List_InsiderTrade__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/InsiderTrade"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[InsiderTrade]]"},"ResponseModel_List_Metric__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/Metric"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[Metric]]"},"ResponseModel_List_Owner__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/Owner"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[Owner]]"},"ResponseModel_List_Quote__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/Quote"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[Quote]]"},"ResponseModel_List_TimeInterval__":{"properties":{"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/TimeInterval"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[TimeInterval]]"},"ResponseModel_List_Union_BalanceSheet__CashFlowStatement__IncomeStatement__AllFundamentals___":{"properties":{"data":{"anyOf":[{"items":{"anyOf":[{"$ref":"#/components/schemas/BalanceSheet"},{"$ref":"#/components/schemas/CashFlowStatement"},{"$ref":"#/components/schemas/IncomeStatement"},{"$ref":"#/components/schemas/AllFundamentals"}]},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[Union[BalanceSheet, CashFlowStatement, IncomeStatement, AllFundamentals]]]"},"ResponseModel_List_str__":{"properties":{"data":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","description":"A message with the response status.","default":"success","example":"success"},"info":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"string"},{"type":"null"}],"title":"Info","description":"Additional information or metadata about the response. Varies by response type.","example":"info"}},"type":"object","title":"ResponseModel[List[str]]"},"StatementType":{"type":"string","enum":["all","income","balance","cashflow"],"title":"StatementType"},"TimeInterval":{"properties":{"date":{"type":"integer","title":"Date","description":"The closing timestamp (*in milliseconds*) of the interval.","example":1729082760000},"open":{"type":"number","title":"Open","description":"The opening price for the interval.","example":232.8825},"high":{"type":"number","title":"High","description":"The highest price for the interval.","example":233.22},"low":{"type":"number","title":"Low","description":"The lowest price for the interval.","example":232.84},"close":{"type":"number","title":"Close","description":"The closing price for the interval.","example":233.22},"volume":{"type":"integer","title":"Volume","description":"The trading volume for the interval.","example":65730}},"type":"object","required":["date","open","high","low","close","volume"],"title":"TimeInterval"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}}}}