id stringlengths 53 86 | api_name stringlengths 2 76 | api_description stringlengths 1 500 ⌀ | api_score float64 0 10 ⌀ | endpoint_name stringlengths 1 190 | endpoint_description stringlengths 0 500 | response_status_code int64 100 505 | response_summary stringlengths 1 68 ⌀ | response_json stringlengths 6 50k | response_json_schema stringlengths 14 150k |
|---|---|---|---|---|---|---|---|---|---|
ab9da26c-b2e8-4a05-a14a-c1ab514683a3/7513fd1c-e97e-42f1-ae4b-5f417fdd8d7c/0/0 | Yahoo Finance | Access Yahoo Finance Realtime Stock Price | Options | ESG | Trends | Statistics | Earnings | Balance Sheets | Analytics | Asset Profile and much more | 9.8 | price | Returns the Stock Price Information for the symbol passed as parameter
for normal stocks :
you can directly search by tickername:
eg. tsla , msft , meta
for crypt:
try searching by ticker name followed by -USD.
for bitcoin try : btc-usd
for eth try : eth-usd
for dogecoin try : doge-usd | 200 | Response | {"maxAge": 1, "preMarketChange": {}, "preMarketPrice": {}, "postMarketChange": {}, "postMarketPrice": {}, "regularMarketChangePercent": {"raw": 0.023396308, "fmt": "2.34%"}, "regularMarketChange": {"raw": 32.88965, "fmt": "32.89"}, "regularMarketTime": 1678544880, "priceHint": {"raw": 2, "fmt": "2", "longFmt": "2"}, "r... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"maxAge": {"type": "integer"}, "preMarketChange": {"type": "object"}, "preMarketPrice": {"type": "object"}, "postMarketChange": {"type": "object"}, "postMarketPrice": {"type": "object"}, "regularMarketChangePercent": {"type": "object", "prop... |
ab9da26c-b2e8-4a05-a14a-c1ab514683a3/f579b3c6-0653-4ce3-9d91-12d50dde25f2/0/0 | Yahoo Finance | Access Yahoo Finance Realtime Stock Price | Options | ESG | Trends | Statistics | Earnings | Balance Sheets | Analytics | Asset Profile and much more | 9.8 | multi-quote | The multi-quote endpoint allows you to get multiple quotes with a single API call.
to use this feature, write the tickers separated by commas. | 200 | Response | {"0": {"symbol": "TSLA", "twoHundredDayAverageChangePercent": {"raw": 0.35642365, "fmt": "35.64%"}, "averageAnalystRating": "2.7 - Hold", "fiftyTwoWeekLowChangePercent": {"raw": 1.5822611, "fmt": "158.23%"}, "language": "en-US", "earningsTimestampEnd": {"raw": 1698091200, "fmt": "2023-10-23", "longFmt": "2023-10-23T16:... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"0": {"type": "object", "properties": {"symbol": {"type": "string"}, "twoHundredDayAverageChangePercent": {"type": "object", "properties": {"raw": {"type": "number"}, "fmt": {"type": "string"}}, "required": ["fmt", "raw"]}, "averageAnalystRa... |
ab9da26c-b2e8-4a05-a14a-c1ab514683a3/075055e3-be27-418b-9722-caa7945abfa2/0/0 | Yahoo Finance | Access Yahoo Finance Realtime Stock Price | Options | ESG | Trends | Statistics | Earnings | Balance Sheets | Analytics | Asset Profile and much more | 9.8 | search | search for tickers with similar name | 200 | Response | {"quotes": [{"exchange": "NYQ", "shortname": "Alcoa Corporation", "quoteType": "EQUITY", "symbol": "AA", "index": "quotes", "score": 3567400, "typeDisp": "Equity", "longname": "Alcoa Corporation", "exchDisp": "NYSE", "sector": "Basic Materials", "industry": "Aluminum", "dispSecIndFlag": false, "isYahooFinance": true}, ... | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"quotes": {"type": "array", "items": {"type": "object", "properties": {"exchange": {"type": "string"}, "shortname": {"type": "string"}, "quoteType": {"type": "string"}, "symbol": {"type": "string"}, "index": {"type": "string"}, "score": {"ty... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/bf5d6be0-c979-43b6-9aef-1cc931179563/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Profitability Index (PI) | This endpoint returns a profitability Index.
What is the Internal Rate of return of an investment that requires $15000 deposit now and then makes the following withdrawals at regular (fixed) intervals: 1500, 2500, 3500, 4500, 6000?. Assuming the ending value is 0.
Required Parameters:
-> rate
-> iinvest (initial invest... | 200 | Response | [{"rate": "10", "initial_investiment": "40000", "cashflow": [18000, 12000, 10000, 9000, 6000], "result": "1.09"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "initial_investiment": {"type": "string"}, "cashflow": {"type": "array", "items": {"type": "integer"}}, "result": {"type": "string"}}, "required": ["cashflow", "initial_investiment", "ra... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/ca61a70a-cd48-4b13-a1e5-16eefb89ed85/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Compound Interest (CI) | This endpoint returns a Compound Interest is the interest calculated on the initial principal and also on the accumulated interest of previous periods of a deposit or loan.
Required Parameters
-> rate
->cperiod (compoundings per period)
->principal
->nperiods (number of periods)
// e... | 200 | Response | [{"rate": "4.3", "compound_periods": "4", "principal": "1500", "number_periods": "6", "result": "1938.84"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "compound_periods": {"type": "string"}, "principal": {"type": "string"}, "number_periods": {"type": "string"}, "result": {"type": "string"}}, "required": ["compound_periods", "number_per... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/70afbbdf-f006-428f-826e-3b7fe6aa1473/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Car Loan Calculator with Yearly Amortization Schedule | This endpoint returns the Home loan with Yearly Amortization
i.e: How much will be my monthly payment on a car that cost $25000 with 20% as a down payment, with 5% interest rate and term of the loan is 10 years
rate=5
loant=10
cprice=25000
downpayment=20 | 200 | Response | [{"downpayment": 5000, "loan_amount": 20000, "monthly_payment": 212.13, "number_month_to_pay": 120, "total_payments": 25455.72, "total_interest": 5455.72, "amortization": [{"year": {"year": 1, "interest_year": 274.95, "principal_year": 5000, "beginning_balance_year": 5000, "ending_balance": 0}}, {"year": {"year": 1, "i... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"downpayment": {"type": "integer"}, "loan_amount": {"type": "integer"}, "monthly_payment": {"type": "number"}, "number_month_to_pay": {"type": "integer"}, "total_payments": {"type": "number"}, "total_interest": {"t... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/6ca854c7-1bc5-4b84-b4cc-2ead493a4446/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Leverage Ratio (LR) | This endpoint returns the Leverage Ratio (LR) that is used to calculate the financial leverage of a company or individual to get an idea of the methods of financing or to measure ability to meet financial obligations.
Required Parameters
->tliability (total liabilities)
->tdebts (total debts)
->tincome (total income)
/... | 200 | Response | [{"total_liability": "25", "total_debts": "10", "total_income": "20", "result": 1.75}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"total_liability": {"type": "string"}, "total_debts": {"type": "string"}, "total_income": {"type": "string"}, "result": {"type": "number"}}, "required": ["result", "total_debts", "total_income", "total_liability"]}... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/4f377910-4530-474f-871f-240b42579387/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Present Value calculation | This endpoint returns the Present Value
i.e:
-> What is the present value (e.g., the initial investment) of an investment that needs to total $20,000 after 10 years of saving $100 every month? Assume the interest rate is 7% (annually) compounded monthly.
-> rate=0.07 **(Note that the value must be decimal... | 200 | Response | [{"rate": "0.07", "nper": "10", "pmt": "100", "fv": "20000", "result": "1339.29"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "nper": {"type": "string"}, "pmt": {"type": "string"}, "fv": {"type": "string"}, "result": {"type": "string"}}, "required": ["fv", "nper", "pmt", "rate", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/c03512f1-175e-4a4c-a617-ade614e3dd82/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Car Loan Calculator | This endpoint returns the Home loan with Monthly Amortization
i.e: How much will be my monthly payment on a car that cost $25000 with 20% as a down payment, with 5% interest rate and term of the loan is 10 years
rate=5
loant=10
cprice=25000
downpayment=20 | 200 | Response | [{"downpayment": 5000, "loan_amount": 20000, "monthly_payment": 212.13, "number_month_to_pay": 120, "total_payments": 25455.72, "total_interest": 5455.72, "amortization": [{"month": {"month": 1, "interest": 83.33, "principal": 128.8, "beginning_balance": 20000, "ending_balance": 19871.2}}, {"month": {"month": 2, "inter... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"downpayment": {"type": "integer"}, "loan_amount": {"type": "integer"}, "monthly_payment": {"type": "number"}, "number_month_to_pay": {"type": "integer"}, "total_payments": {"type": "number"}, "total_interest": {"t... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/5ab45ae0-c15b-4f06-a757-72d336d7f574/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Home Loan Calculator with Yearly Amortization Schedule | This endpoint returns the Home loan with Yearly Amortization
i.e: How much will be my monthly payment on a house that cost $100000 with 20% as a down payment, with 5% interest rate and term of the loan is 30 years
rate=5
loant=30
hvalue=100000
downpayment=20 | 200 | Response | [{"downpayment": 6, "loan_amount": 24, "monthly_payment": 0.13, "number_month_to_pay": 360, "total_payments": 46.38, "total_interest": 22.38, "amortization": [{"year": {"year": 1, "interest_year": 274.95, "principal_year": 5000, "beginning_balance_year": 5000, "ending_balance": 0}}, {"year": {"year": 1, "interest_year"... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"downpayment": {"type": "integer"}, "loan_amount": {"type": "integer"}, "monthly_payment": {"type": "number"}, "number_month_to_pay": {"type": "integer"}, "total_payments": {"type": "number"}, "total_interest": {"t... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/d9f28f90-6d1d-4336-82e0-98df6ff8f729/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Principal and Interest payment calculation with Monthly Amortization Schedule | This endpoint returns the Principal and Interest payment calculation with Monthly Amortization Schedule.
i.e: What is the amortization schedule for a 1 year loan of $5000 at 10% interest per year compounded monthly? And the total interest payments?
-> rate=10
-> loant= 1
-> lamount=5000
| 200 | Response | [{"monthly_payment": 439.58, "number_month_to_pay": 12, "total_payments": 5274.95, "total_interest": 274.95, "amortization": [{"month": {"month": 1, "interest": 41.67, "principal": 397.91, "beginning_balance": 5000, "ending_balance": 4602.09}}, {"month": {"month": 2, "interest": 38.35, "principal": 401.23, "beginning_b... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"monthly_payment": {"type": "number"}, "number_month_to_pay": {"type": "integer"}, "total_payments": {"type": "number"}, "total_interest": {"type": "number"}, "amortization": {"type": "array", "items": {"type": "ob... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/c6d05eae-e256-4ebc-879e-15894d3c5dda/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Principal and Interest payment calculation with Yearly Amortization Schedule | This endpoint returns the Principal and Interest payment calculation with yearly Amortization Schedule.
i.e: What is the amortization schedule for a 1 year loan of $5000 at 10% interest per year compounded monthly? And the total interest payments?
-> rate=10
-> loant= 1
-> lamount=5000
| 200 | Response | [{"monthly_payment": 439.58, "years_to_pay": 1, "number_month_to_pay": 12, "total_payments": "5274.95", "total_interest": 274.95, "amortization": [{"year": {"year": 1, "interest_year": 274.95, "principal_year": 5000, "beginning_balance_year": 5000, "ending_balance": 0}}]}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"monthly_payment": {"type": "number"}, "years_to_pay": {"type": "integer"}, "number_month_to_pay": {"type": "integer"}, "total_payments": {"type": "string"}, "total_interest": {"type": "number"}, "amortization": {"... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/aa2890fe-ae26-4d83-9d4d-745ec7ce384b/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Future Value calculation | This endpoint returns the Future Value.
i.e: What is the future value after 30 years of saving $1000 now, with an additional monthly savings of $100. Assume the interest rate is 7% (annually) compounded monthly?
rate= 0.07 (Rate has to be in decimal)
nper=30
pmt=-100 (Has to be negative)
pv=1000 | 200 | Response | [{"rate": "0.07", "nper": "30", "pmt": "-100", "pv": "1000", "result": "130113.60"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "nper": {"type": "string"}, "pmt": {"type": "string"}, "pv": {"type": "string"}, "result": {"type": "string"}}, "required": ["nper", "pmt", "pv", "rate", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/d5ab4534-6433-4afe-bb80-d997268b6e1d/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Payments calculation | This endpoint returns the monthly payment on a Loan.
i.e:
- What is the monthly payment needed to pay off a $100,000 loan in 10 years at an annual interest rate of 2.5%?
* *rate=> 0.025 **
* nper=> 10
pv: 100000
result: 942.69 | 200 | Response | [{"rate": "0.025", "nper": "10", "pv": "100000", "result": "942.70"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "nper": {"type": "string"}, "pv": {"type": "string"}, "result": {"type": "string"}}, "required": ["nper", "pv", "rate", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/6d91a9ac-0efb-4f47-8ecc-d75f47075ad0/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Number of period calculation | This endpoint returns the Number of period.
i.e:
-> If we only had $500/month to pay towards the loan, how long would it take to pay-off a loan of $10,000 at 3% annual interest?
-> rate:=0.03 ** (Note that the rate is has to be converted to decimal, 3%= 0.03)**
-> pmt= 500
-> pv= 10000
Resul... | 200 | Response | [{"rate": "0.03", "pmt": "500", "pv": "10000", "result": 20}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "pmt": {"type": "string"}, "pv": {"type": "string"}, "result": {"type": "integer"}}, "required": ["pmt", "pv", "rate", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/c4efec5d-8024-4a9a-8e7c-f3a6b1ac7846/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Inflation-adjusted Return | This endpoint Measure the return taking into account the time period's inflation rate.
Parameters
-> ireturn (investment Return)
-> irate (inflation Rate) | 200 | Response | [{"investiment_return": "0.08", "inflation_rate": "0.03", "result": "4.85"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"investiment_return": {"type": "string"}, "inflation_rate": {"type": "string"}, "result": {"type": "string"}}, "required": ["inflation_rate", "investiment_return", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/934636b4-5236-4eb9-a111-e28376d21c58/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Weighted Average Cost of Capital (WACC) | This endpoint returns a Weighted Average Cost of Capital (WACC) is the rate that a company is expected to pay on average to all its security holders to finance its assets.
Parameters:
->mvaluee (market value of equity)
->mvalued (market value of debt)
->cequity (cost of equity)
->cdebt (cost of debt)
->trate (tax rate)... | 200 | Response | [{"market_value_equity": "600000", "market_value_debt": "400000", "cost_equity": "6", "cost_debt": "5", "tax_rate": "35", "result": "4.90"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"market_value_equity": {"type": "string"}, "market_value_debt": {"type": "string"}, "cost_equity": {"type": "string"}, "cost_debt": {"type": "string"}, "tax_rate": {"type": "string"}, "result": {"type": "string"}},... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/6077d723-4d74-4c0a-8063-74c492c55613/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Rule of 72 (R72) | Rule of 72 (R72) is a rule stating that in order to find the number of years required to double your money at a given
This endpoint returns the interest rate, you divide the compound return into 72.
Parameters:
->rate
// e.g., If annual rate is 10%, rule of 72 is 7.2 years. | 200 | Response | [{"rate": "10", "result": "7.20"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "result": {"type": "string"}}, "required": ["rate", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/9ea9502d-5c1a-4543-8c70-0aa3b985c9ad/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Return on Investment (ROI) | This endpoint returns a Return on Investment (ROI) is a simple calculation that tells you the bottom line return of any investment.
Parameters
->binvest (initial investment)
->earnings
// e.g., If initial investment is -$55,000 and the earnings are $60,000, the return on investment is 9.09%. | 200 | Response | [{"initial_investiment": "55000", "earnings": "60000", "result": "9.09"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"initial_investiment": {"type": "string"}, "earnings": {"type": "string"}, "result": {"type": "string"}}, "required": ["earnings", "initial_investiment", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/3b400400-b9d7-4a0b-8dda-33c62b45b249/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Discount Factor (DF) | This Endpoint Returns The Discount Factor (DF) is the factor by which a future cash flow must be multiplied in order to obtain the present value.
Required parameters
->rate
->nperiods
// e.g., If rate is 10% and the number of periods is 6, the result is an array of discount factors: [1, 0.91, 0.827, 0.752, 0.684]... | 200 | Response | [{"rate": "10", "number_periods": "6", "result": [1, 0.91, 0.827, 0.752, 0.684]}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"rate": {"type": "string"}, "number_periods": {"type": "string"}, "result": {"type": "array", "items": {"type": "number"}}}, "required": ["number_periods", "rate", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/3708331e-cb5d-42a3-8fa9-786d5b300fdf/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Compound Annual Growth Rate (CAGR) | This endpoint returns a Compound Annual Growth Rate (CAGR) is the year-over-year growth rate of an investment over a specified period of time.
->bvalue (beginning value)
->evalue(ending value)
->nperiods (number of periods)
// e.g., If the beginning value is $10,000, the ending value is $19,500, and the number of peri... | 200 | Response | [{"beginning_value": "10000", "ending_value": "19500", "number_periods": "3", "result": "24.93"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"beginning_value": {"type": "string"}, "ending_value": {"type": "string"}, "number_periods": {"type": "string"}, "result": {"type": "string"}}, "required": ["beginning_value", "ending_value", "number_periods", "res... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/c5cc89c0-e661-47e5-a8bd-33c062017930/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Internal Rate of Return calculation | This endpoint Returns the internal rate of return for a series of cash flows. (IRR) | 200 | Response | [{"Investiments": "-1500,500,500,500,500", "result": "12.59"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"Investiments": {"type": "string"}, "result": {"type": "string"}}, "required": ["Investiments", "result"]}} |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/218d144c-1631-429b-bde6-2000cf8373d0/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Interest rate calculation | i.e:
-> What is the interest rate for a $8,000 loan if the loan term is 5 years and and payments are $152.50 monthly?
->pv=8000
->nper=5
->pmt=152.5
->fv=0 (future value)
->
| 200 | Response | [{"pv": "8000", "nper": "5", "pmt": "152.5", "fv": "0", "monthly_rate": "0.45", "yearly_rate": 5.4}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"pv": {"type": "string"}, "nper": {"type": "string"}, "pmt": {"type": "string"}, "fv": {"type": "string"}, "monthly_rate": {"type": "string"}, "yearly_rate": {"type": "number"}}, "required": ["fv", "monthly_rate", ... |
9c20eba0-4a0e-437f-8560-9d3500b0bdab/d78d1919-de54-48a1-8d0b-83a08afb5ae1/0/0 | Financial Calculators | This API returns a set of high-level financial formulas such as loan payments, rate, present value, car payments, and much more... with amortization schedules... | null | Home Loan Calculator | This endpoint returns the Home loan with Monthly Amortization
i.e: How much will be my monthly payment on a house that cost $100000 with 20% as a down payment, with 5% interest rate and term of the loan is 30 years
rate=5
loant=30
hvalue=100000
downpayment=20 | 200 | Response | [{"downpayment": 20000, "loan_amount": 80000, "monthly_payment": 429.46, "number_month_to_pay": 360, "total_payments": 154604.63, "total_interest": 74604.63, "amortization": [{"month": {"month": 1, "interest": 333.33, "principal": 96.12, "beginning_balance": 80000, "ending_balance": 79903.88}}, {"month": {"month": 2, "... | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"downpayment": {"type": "integer"}, "loan_amount": {"type": "integer"}, "monthly_payment": {"type": "number"}, "number_month_to_pay": {"type": "integer"}, "total_payments": {"type": "number"}, "total_interest": {"t... |
f2c1a2ec-a690-4445-81d6-65b3cfb3fe5f/37ed08fa-546e-4b98-b5b5-069605d02d76/0/0 | 🔴 CRYPTO WALLET CREATE 🔴 Daddy | Create crypto wallets of the 19 most popular cryptocurrencies.
Easy: GET request to desired chain, /bitcoin /etherium etc.
Supported chains:
bitcoin, algorand, bcash, bsc, bnb, celo, ethereum, one, klaytn, kcs, litecoin, polygon, solana, tron, vet, xdc, xrp, xlm, ... | 8.3 | Create | Create Crypto Wallet
Simply get request to the desired chain
EX: https://crypto-wallet-create-daddy.p.rapidapi.com/bitcoin | 200 | Example | {"mnemonic": "atom drink height ability trust salmon embrace detail birth current cook canal collect celery penalty general lizard radio clown hip speed autumn pulp apart", "xpub": "xpub6Eu9eMGDmMCF3JApzEg9SQxju6yPcdNMVY2zadWJ6EwGyuZF2Ry4oJn8b5CWzZ747hMuSebBhTbhQE1yAMMgYAaYpKLXmpj27cz5gPYgnW6", "address": "bc1qd47qpq7v... | {"type": "object", "properties": {"mnemonic": {"type": "string"}, "xpub": {"type": "string"}, "address": {"type": "string"}, "blockchain": {"type": "string"}}} |
ec32e931-581b-4d53-b557-389f98910f48/11962f93-7ab2-410c-a91f-ac30e15d5e98/0/0 | Consulta FIPE pela placa | Consulte o valor e histórico do preço de qualquer carro através da nossa api disponível | 0.1 | Buscar FIPE pela PLACA | Busca dados e preço atual do veiculo pela placa na FIPE | 200 | Example_1 | {"valor": "R$ 62.156,00", "marca": "Hyundai", "anoModelo": "2013/2014", "modelo": "HYUNDAI I30", "mes": "julho de 2022 ", "fipe": "015098-3", "combustivel": "Gasolina"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"valor": {"type": "string"}, "marca": {"type": "string"}, "anoModelo": {"type": "string"}, "modelo": {"type": "string"}, "mes": {"type": "string"}, "fipe": {"type": "string"}, "combustivel": {"type": "string"}}, "required": ["anoModelo", "co... |
ec32e931-581b-4d53-b557-389f98910f48/56923571-5d37-4967-9fdd-b97ad0a5865a/0/0 | Consulta FIPE pela placa | Consulte o valor e histórico do preço de qualquer carro através da nossa api disponível | 0.1 | Histórico da FIPE | Busca o histórico de preço da FIPE pela dos últimos meses. Tem um tempo de requisição um pouco maior. | 200 | Example_1 | {"modelo": "AGILE LTZ 1.4 MPFI 8V FlexPower 5p", "marca": "GM I/CHEVROLET AGILE LTZ undefined", "anoModelo": "2013", "historico": [{"mesReferencia": "julho de 2022 ", "valor": "R$ 35.119,00"}, {"mesReferencia": "junho de 2022 ", "valor": "R$ 35.210,00"}, {"mesReferencia": "maio de 2022 ", "valor": "R$ 36.629,00"}, {"me... | {"type": "object", "properties": {"modelo": {"type": "string"}, "marca": {"type": "string"}, "anoModelo": {"type": "string"}, "historico": {"type": "array", "items": {"type": "object", "properties": {"mesReferencia": {"type": "string"}, "valor": {"type": "string"}}}}}} |
017878da-f7cc-4512-8ca9-428bf2e5ba2b/082ac692-1c19-472c-9963-63105d2c0daa/0/0 | Nigeria Bank Account validation | You can look up any bank account details in Nigeria using our free bank API in a few seconds to build applications faster. | 0.1 | SIMPLE GET | You can lookup any bank account details in Nigeria using our free bank API in few seconds to build applications faster.
BANK CODE
BANK LIST | 200 | New Example | {"account_number": "123567890", "bank_code": "022"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"account_number": {"type": "string"}, "bank_code": {"type": "string"}}, "required": ["account_number", "bank_code"]} |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/8ab6b623-c50e-4f5d-a12f-0276f877addd/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Stocks List | You can get all list of our supported stocks names, ids, short name and country name. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "exchanges": ["NYSE", "NASDAQ", "OTC Markets", "NYSE Amex"], "sectors": ["Capital Goods", "Energy", "Technology", "Services", "Basic Materials", "Financial", "Consumer/Non-Cyclical", "Healthcare", "Consumer Cyclical", "Utilities", "Transportation", "Conglomerates"], "server_tim... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "exchanges": {"items": {"type": "string"}, "type": "array"}, "sectors": {"items": {"type": "string"}, "type": "array"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": ... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/65730473-69b7-4c32-a8f4-92a1d69da1d2/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Stocks - Indices | You can get all the list of supported indices in your favorite country | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 10:05:24 UTC"}, "msg": "Successfully", "response": [{"country": "japan", "full_name": "Nikkei 225 (CFD)", "index_id": "268", "index_name": "Nikkei 225"}, {"country": "japan", "full_name": "JASDAQ", "index_id": "269", "index_name": "JASDAQ"}, {"country... | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 10:05:24 UTC"}, "msg": "Successfully", "response": [{"country": "japan", "full_name": "Nikkei 225 (CFD)", "index_id": "268", "index_name": "Nikkei 225"}, {"country": "japan", "full_name": "JASDAQ", "index_id": "269", "index_name": "JASDAQ"}, {"country... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/951826eb-81b9-4cc1-bb3c-0fb64c5cfbbd/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Stock Latest Price | Stock latest price API is very useful. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "exchanges": [], "sectors": [], "server_time": "2021-02-12 10:50:49 UTC"}, "msg": "Successfully", "response": [{"c": "210.53", "ccy": "USD", "ch": "-1.39", "cp": "-0.66%", "cty": "united-states", "exch": "NYSE", "h": "213.96", "id": "1", "l": "208.58", "s": "BA", "t": "16130771... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "exchanges": {"type": "array"}, "sectors": {"type": "array"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"c": {"type": "string"}, "ccy": ... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/ece80fff-49a4-414f-ac84-be3a21b741a5/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Indices Latest Price | You can get one or multiple indices latest prices at the same time. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 10:53:20 UTC"}, "msg": "Successfully", "response": [{"c": "31430.70", "ch": "-7.10", "cp": "-0.02%", "cty": "united-states", "h": "31543.82", "id": "1", "l": "31244.36", "name": "Dow Jones", "t": "1613081293", "tm": "2021-02-11 22:08:13"}], "status": ... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"c": {"type": "string"}, "ch": {"type": "string"}, "cp": {"type": "string"}, "cty": {"type": "... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/85469a4f-a976-4381-846e-0ea106543668/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Historical Price | You want to know about the historical exchange prices | 200 | Response | {"code": 200, "info": {"credit_count": 1, "id": "1", "period": "1d", "server_time": "2021-02-12 11:03:12 UTC", "symbol": "BA"}, "msg": "Successfully", "response": {"1575417600": {"c": "348.839996", "h": "355.290009", "l": "348.820007", "o": "354.700012", "t": 1575417600, "tm": "2019-12-04 00:00:00", "v": "3016326"}, "1... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "id": {"type": "string"}, "period": {"type": "string"}, "server_time": {"type": "string"}, "symbol": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"1575417600": {"pr... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/6d32f189-fe7a-45d3-b635-9602bbce97e7/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Dividens - Yields | You can get dividends last and historical data in single request | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:15:46 UTC"}, "msg": "Successfully", "response": [{"data": {"965779200": {"dividend": "0.14", "dividend_date": "2000-08-09", "payment_date": "2000-08-15", "type": "Trailing Twelve Months", "type_short": "TTM", "yeild": "-"}, "973641600": {"dividend"... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"data": {"properties": {"965779200": {"properties": {"dividend": {"type": "string"}, "dividend... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/3d48c459-a7b9-4ecd-8b19-c5a199f70e2b/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Performance | Get stock performance, when and how much stock price performs. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "exchanges": [], "sectors": [], "server_time": "2021-02-12 11:18:20 UTC"}, "msg": "Successfully", "response": [{"ccy": "USD", "daily": "-0.66", "exch": "NYSE", "id": "1", "month": "1.6", "symbol": "BA", "week": "1.25", "year": "-38.59", "year3": "-38.65", "ytd": "-1.65"}], "sta... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "exchanges": {"type": "array"}, "sectors": {"type": "array"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"ccy": {"type": "string"}, "dail... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/adb7115a-99c2-4cb6-98c7-d6cd104a4418/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Fundamental | Get stock fundamental to track stock performance for screening. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "exchanges": [], "sectors": [], "server_time": "2021-02-12 11:20:15 UTC"}, "msg": "Successfully", "response": [{"avg_vol_3m": "17.83M", "beta": "1.62", "ccy": "USD", "exch": "NYSE", "id": "1", "market_cap": "122.81B", "pe_ratio": "", "revenue": "58.66B", "symbol": "BA"}], "stat... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "exchanges": {"type": "array"}, "sectors": {"type": "array"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"avg_vol_3m": {"type": "string"}... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/4c7c64f2-6ae0-43dd-b9a4-aa4f0a872702/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Finance Income | Finance is a heart of stock, You can get all current and historical income of stock | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:25:03 UTC"}, "msg": "Successfully", "response": [{"data": {"CostofRevenueTotal": {"bold": false, "heading": "Cost of Revenue, Total", "record": {"2017-12-31": "76612", "2018-12-31": "81490", "2019-12-31": "72093", "2020-12-31": "63843"}}, "DPSCommo... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"data": {"properties": {"CostofRevenueTotal": {"properties": {"bold": {"type": "boolean"}, "he... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/e370f711-d0e8-4e3a-afef-e1ca0936278d/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Finance Balance | Finance is a heart of stock, You can get all current and historical balance of stock | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:30:22 UTC"}, "msg": "Successfully", "response": [{"data": {"TotalAssets": {"bold": true, "child": {"GoodwillNet": {"bold": false, "heading": "Goodwill, Net", "record": {"2017-12-31": "5559", "2018-12-31": "7840", "2019-12-31": "8060", "2020-12-31":... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"data": {"properties": {"TotalAssets": {"properties": {"bold": {"type": "boolean"}, "child": {... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/b224c833-7a88-4709-ba4f-db3d4fb89c70/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Finance Cash | Finance is a heart of stock, You can get all current and historical cash of stock | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:31:31 UTC"}, "msg": "Successfully", "response": [{"data": {"BeginningCashBalance": {"bold": false, "heading": "Beginning Cash Balance", "record": {"2017-12-31": "8795", "2018-12-31": "8711", "2019-12-31": "7727", "2020-12-31": "-"}}, "CashFromFinan... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"data": {"properties": {"BeginningCashBalance": {"properties": {"bold": {"type": "boolean"}, "... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/711d8637-1233-482c-aa35-659297386815/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Finance Earning | Finance is a heart of stock, You can get all current and historical earning of stock, | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:34:33 UTC"}, "msg": "Successfully", "response": [{"data": {"2013-07-24": {"EPS": "1.67\u00a0", "EPS_forecast": "1.58", "EPS_status": "Profit", "period_end": "06-2013", "release_date": "2013-07-24", "revenue": "--", "revenue_forecast": "20,781M", "r... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"data": {"properties": {"2013-07-24": {"properties": {"EPS": {"type": "string"}, "EPS_forecast... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/5d9a5f38-8124-4476-983b-1a24eaf97627/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Profile Details | Get all details of company about their address | 200 | Response | {"code": 200, "info": {"credit_count": 1, "exchanges": [], "sectors": [], "server_time": "2021-02-12 11:36:51 UTC"}, "msg": "Successfully", "response": [{"ccy": "USD", "country": "united-states", "equity_type": "ORD", "exch": "NYSE", "full_name": "Boeing Co", "id": "1", "industry": "Aerospace & Defense", "info": {"coun... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "exchanges": {"type": "array"}, "sectors": {"type": "array"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"ccy": {"type": "string"}, "coun... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/7d40ad95-4574-4851-850d-1c14a19cf6f5/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Pivot Points | In financial markets, a pivot point | 200 | Response | {"code": 200, "info": {"credit_count": 1, "disclaimer": "Note: These Prices, Market trends and signals are not develop for trading purpose. Therefore we doesn`t bear any responsibility for any trading losses you might incur as a result of using this data.", "id": "1", "period": "1d", "server_time": "2021-02-12 11:40:39... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "disclaimer": {"type": "string"}, "id": {"type": "string"}, "period": {"type": "string"}, "server_time": {"type": "string"}, "symbol": {"type": "string"}, "update": {"type": "string"}, "update_time": {"type": "stri... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/bf175430-6c6f-4cbb-872c-99522130ab1a/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Moving Averages (MA Lines) | Moving Average (MA) is a trend indicator. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "disclaimer": "Note: These Prices, Market trends and signals are not develop for trading purpose. Therefore we doesn`t bear any responsibility for any trading losses you might incur as a result of using this data.", "id": "1", "period": "1d", "server_time": "2021-02-12 11:43:23... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "disclaimer": {"type": "string"}, "id": {"type": "string"}, "period": {"type": "string"}, "server_time": {"type": "string"}, "symbol": {"type": "string"}, "update": {"type": "string"}, "update_time": {"type": "stri... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/0a0476df-c202-42f0-b55f-983f6657dd24/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Technical Indicator | Technical indicators are calculated with the help of top stock indicators (MA,RSI,STOCH,ATR etc) | 200 | Response | {"code": 200, "info": {"credit_count": 1, "disclaimer": "Note: These Prices, Market trends and signals are not develop for trading purpose. Therefore we doesn`t bear any responsibility for any trading losses you might incur as a result of using this data.", "id": "1", "period": "1d", "server_time": "2021-02-12 11:46:17... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "disclaimer": {"type": "string"}, "id": {"type": "string"}, "period": {"type": "string"}, "server_time": {"type": "string"}, "symbol": {"type": "string"}, "update": {"type": "string"}, "update_time": {"type": "stri... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/fc828038-8cc2-4e00-bb4e-682e0211c624/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Technical Signals Indicator | Signals indicators are calculated with the help of top chart indicators (MA, RSI, STOCH, ATR etc) | 200 | Response | {"code": 200, "info": {"credit_count": 1, "exchanges": [], "sectors": [], "server_time": "2021-02-12 11:48:46 UTC"}, "msg": "Successfully", "response": [{"ccy": "USD", "daily": "Strong Buy", "exch": "NYSE", "hourly": "Neutral", "id": "1", "monthly": "Neutral", "symbol": "BA", "weekly": "Buy"}], "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "exchanges": {"type": "array"}, "sectors": {"type": "array"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"ccy": {"type": "string"}, "dail... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/e0b3d0b1-1902-444e-aaa4-35745bb0a95d/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Search | You can search any currency with similar words | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:50:34 UTC"}, "msg": "Successfully", "response": [{"ccy": "USD", "country": "United States", "exch": "NYSE", "full_name": "General Electric Company", "id": "1287", "locality": "Boston", "name": "General Electric", "short_name": "GE", "type": "stock"... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"items": {"properties": {"ccy": {"type": "string"}, "country": {"type": "string"}, "exch": {"type": "string"}, "full_na... |
27d4aa38-2eac-4a64-904c-1dc0484d27b2/cc4f06a9-9267-4e05-a8cb-9aa3fd90a75b/0/0 | Stock | Powered by 30+ stock exchange rate data sources | null | Country Report | This API gives you full report of country. How many stocks in each country, how many stocks in each exchange or sectors. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2021-02-12 11:52:19 UTC"}, "msg": "Successfully", "response": {"country": {"argentina": 13, "australia": 134, "austria": 117, "bahrain": 8, "bangladesh": 4, "belgium": 25, "bosnia-herzegovina": 6, "botswana": 6, "brazil": 1105, "bulgaria": 6, "canada": 1539, "ch... | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"country": {"properties": {"argentina": {"type": "integer"}, "australia": {"type": "integer"}, "austria"... |
09010e86-eb81-436e-87e1-87a3e0f7bed2/7de78c0a-c3e3-47ec-8c55-3116abe13a72/0/0 | Fast Yahoo API | The stock and company metadata API provides a convenient way to retrieve various information about a stock or company from Yahoo's database. | null | /company-info/{ticker} | 200 | null | {"ticker": "", "exchange": "", "industry": "", "sector": "", "website": "", "description": ""} | {"type": "object", "properties": {"ticker": {"type": "string"}, "exchange": {"type": "string"}, "industry": {"type": "string"}, "sector": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}}} | |
09010e86-eb81-436e-87e1-87a3e0f7bed2/7de78c0a-c3e3-47ec-8c55-3116abe13a72/1/0 | Fast Yahoo API | The stock and company metadata API provides a convenient way to retrieve various information about a stock or company from Yahoo's database. | null | /company-info/{ticker} | 404 | null | {"message": ""} | {"type": "object", "properties": {"message": {"type": "string"}}} | |
09010e86-eb81-436e-87e1-87a3e0f7bed2/7de78c0a-c3e3-47ec-8c55-3116abe13a72/2/0 | Fast Yahoo API | The stock and company metadata API provides a convenient way to retrieve various information about a stock or company from Yahoo's database. | null | /company-info/{ticker} | 500 | null | {"message": ""} | {"type": "object", "properties": {"message": {"type": "string"}}} | |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/0/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 500 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/1/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 403 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/2/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 504 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/3/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 501 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/4/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 404 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/5/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 200 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {"nextCursor": "1259723474", "items": [{"id": "i-17bbf36498de4d68a0d4f86c7b62f69f", "fullName": "George Cimafranca Palomero, Jr", "firstName": "George", "middleName": "Cimafranca", "lastName": "Palomero", "suffix": "Jr", "... | {"title": "Identity List Response", "type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/6/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 503 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/7/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 400 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/8/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 401 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/9/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 415 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/a9782635-0115-43a9-af6e-d8e40dfe79ac/10/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-identities | Get a user's identity profiles from employment data sources. | 429 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/0/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 504 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/1/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 500 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/2/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 415 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/3/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 401 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/4/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 400 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/5/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 501 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/6/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 429 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/7/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 200 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {"id": "17bbf36498de4d68a0d4f86c7b62f69f", "createdAt": "2021-04-14T09:30:24Z", "name": "Event Notification Postback", "url": "https://webhook.clienturl.xyz", "eventTypes": ["ACCOUNT_CONNECTED"], "secret": "a little secret... | {"title": "WebhookPostResponse", "type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EX... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/8/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 404 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/9/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 403 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/c59de2e8-9d39-4459-a0d9-b60086d775c3/10/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | create-webhook | Create a webhook endpoint. | 503 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/0/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 200 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {"nextCursor": "1259723474", "items": [{"id": "17bbf36498de4d68a0d4f86c7b62f69f", "createdAt": "2021-04-14T09:30:24Z", "fullName": "George Cimafranca Palomero, Jr", "firstName": "George", "lastName": "Palomero", "email": "... | {"title": "InviteListResponse", "type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXC... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/1/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 403 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/2/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 400 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/3/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 501 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/4/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 404 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/5/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 504 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/6/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 503 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/7/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 500 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/8/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 401 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/9/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 415 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/e51ccde3-0c5f-41f0-af55-74117b3b8e8d/10/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-invites | Get the list of invites sent out to users. | 429 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/0/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 501 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/1/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 404 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/2/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 503 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/3/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 500 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/4/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 415 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/5/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 401 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/6/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 400 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/7/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 403 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/8/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 504 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/9/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 200 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {"nextCursor": "1259723474", "items": [{"id": "inc-17bbf36498de4d68a0d4f86c7b62f69f", "workItem": null, "employer": "ABC Corporation", "startDate": "2021-06-16", "endDate": "2021-06-30", "paymentMethod": "Bank", "currency"... | {"title": "Income List Response", "type": "object", "x-internal": true, "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURC... |
fecd2438-8469-4d33-b9d2-911466bfae16/be12e181-9216-41ae-88a2-e91be5dcf427/10/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | list-incomes | Get the user's incomes from employment data sources. | 429 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/005fc14b-f716-44af-a204-373a6c34232d/0/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | get-user | Get a particular user profile. | 501 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/005fc14b-f716-44af-a204-373a6c34232d/1/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | get-user | Get a particular user profile. | 400 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/005fc14b-f716-44af-a204-373a6c34232d/2/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | get-user | Get a particular user profile. | 500 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/005fc14b-f716-44af-a204-373a6c34232d/3/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | get-user | Get a particular user profile. | 504 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/005fc14b-f716-44af-a204-373a6c34232d/4/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | get-user | Get a particular user profile. | 401 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
fecd2438-8469-4d33-b9d2-911466bfae16/005fc14b-f716-44af-a204-373a6c34232d/5/0 | Smile | Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API! | 0.1 | get-user | Get a particular user profile. | 429 | null | {"code": "OK", "message": "Success", "requestId": "5b79399a-6852-4234-bb0e-ad472648282d", "data": {}} | {"type": "object", "properties": {"code": {"type": "string", "title": "Object-Metadata-Ref-API-Code", "description": "Request status code", "enum": ["OK", "CREATED", "INVALID_CREDENTIALS", "INVALID_PARAMETERS", "INVALID_TOKEN", "UNAUTHORIZED_ACCESS", "MISSING_RESOURCE", "REQUEST_LIMIT_EXCEEDED", "SERVER_ERROR", "UNSUPP... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.