-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmp.yaml
65 lines (51 loc) · 1.25 KB
/
fmp.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
openapi: 3.0.0
servers:
- description: Financial Modeling Prep API
url: https://financialmodelingprep.com/api/v3
info:
description: Financial Modeling Prep API
version: 1.0.0
title: Financial Modeling Prep API
contact:
email: [email protected]
license:
name: GPL-3.0
tags:
- name: history
description: History
- name: company_valuation
description: Company Valuation
- name: list
description: List
security:
- api_key: []
paths:
/profile/{symbol}:
$ref: "./paths/profile.yaml"
/quote/{symbol}:
$ref: "./paths/quote.yaml"
/{type}/list:
$ref: "./paths/list.yaml"
/historical-price-full/{symbol}:
$ref: "./paths/historicalPriceFull.yaml"
/historical-chart/{resolution}/{symbol}:
$ref: "./paths/historicalChart.yaml"
components:
securitySchemes:
api_key:
type: apiKey
name: apikey
in: query
schemas:
Symbol:
$ref: "./schemas/Symbol.yaml"
EndOfDayPriceHistory:
$ref: "./schemas/EndOfDayPriceHistory.yaml"
EndOfDayPrice:
$ref: "./schemas/EndOfDayPrice.yaml"
OHVCVPrices:
$ref: "./schemas/OHVCVPrices.yaml"
OHVCVPrice:
$ref: "./schemas/OHVCVPrice.yaml"
CompanyProfile:
$ref: "./schemas/CompanyProfile.yaml"