
CreditYelp
Description
Access various essential financial calculators for a detailed repayment schedule and payoff term.
Details
https://www.credityelp.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "CreditYelp",
"name_for_model": "CreditYelp",
"description_for_human": "Access various essential financial calculators for a detailed repayment schedule and payoff term.",
"description_for_model": "Access various financial calculators and get accurate figures for personal loans and credit card payoff plans. The outputs contain repayment schedules with detailed numbers and tables. ",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://www.credityelp.com/openai/services.json",
"is_user_authenticated": false
},
"logo_url": "https://credityelp.com/openai/logo.png",
"contact_email": "support@credityelp.com",
"legal_info_url": "https://www.credityelp.com/plugin-for-chatgpt.html"
}
https://www.credityelp.com/openai/services.json
{
"openapi": "3.0.1",
"info": {
"version": "v0",
"title": "Open AI CreditYelp Calulator Api"
},
"servers": [
{
"url": "https://www.credityelp.com/openai/calulator"
}
],
"tags": [
{
"name": "open-ai-calulator-endpoint",
"description": "Open AI Calulator Endpoint. Query for repayment information."
}
],
"paths": {
"/personalloans": {
"get": {
"tags": [
"open-ai-calulator-endpoint"
],
"summary": "Calculate and illustrate the repayment schedule for the personal loans. The output is including the interest rate, monthly payment, and loan term. Return a reasonable example when user only input loan amount or balance. The Missing values will be generated automatically on the example.",
"operationId": "personalloansGET",
"parameters": [
{
"name": "money",
"in": "query",
"description": "The total amount of the user’s existing loan and the amount user’s plan to borrow.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "rate",
"in": "query",
"description": "loan interest rate",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "term",
"in": "query",
"description": "The total number of periods that the user needs to repay the loan. Month as the unit.",
"required": false,
"schema": {
"type": "integer"
}
},
{
"name": "creditscore",
"in": "query",
"description": "User's credit score.",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Calculation Result",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PersonalloansResponse"
}
}
}
},
"400": {
"description": "the requested scope does not meet the requirements"
},
"503": {
"description": "one or more services are unavailable"
}
},
"deprecated": false
}
},
"/creditcardloans": {
"get": {
"tags": [
"open-ai-calulator-endpoint"
],
"summary": "Calculate and illustrate the necessary figures and repayment plan to pay off the credit card balance. Return a reasonable example when user only input loan amount or balance. The Missing values will be generated automatically on the example.",
"operationId": "creditCardloansGET",
"parameters": [
{
"name": "balance",
"in": "query",
"description": "the total outstanding amount owed, including purchases, fees, and interest charges, that a cardholder must repay.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "rate",
"in": "query",
"description": "The interest rate that the credit card issuer charges the user on the outstanding balance.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "monthly_payment",
"in": "query",
"description": "The fixed amount that needs to be repaid by the user each month during a given repayment period until the balance is paid off.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "term",
"in": "query",
"description": "The total number of periods that the user wishes to payoff the outstanding credit card balance. Month as the unit.",
"required": false,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "Calculate Credit Card loan repayment Result",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreditCardloansResponse"
}
}
}
},
"400": {
"description": "the requested scope does not meet the requirements"
},
"503": {
"description": "one or more services are unavailable"
}
},
"deprecated": false
}
}
},
"components": {
"schemas": {
"PayInfoResult": {
"type": "object",
"properties": {
"monthly_payment": {
"type": "double",
"description": "Monthly Payment"
},
"loan_amount": {
"type": "double",
"description": "Loan Amount"
},
"total_interest_paid": {
"type": "double",
"description": "Total interest paid"
},
"total_amount_paid": {
"type": "double",
"description": "Total amount paid"
}
},
"description": "monthly repayment information",
"title": "Repayment Amount"
},
"CreditCardPayInfoResult": {
"type": "object",
"properties": {
"monthly_payment": {
"type": "double",
"description": "Monthly Payment"
},
"credit_card_balance": {
"type": "double",
"description": "Credit Card Balance"
},
"interest_rate": {
"type": "double",
"description": "Interest Rate"
},
"months_to_payoff": {
"type": "integer",
"description": "Months To Payoff"
},
"total_interest_paid": {
"type": "double",
"description": "Total interest paid"
},
"total_amount_paid": {
"type": "double",
"description": "Total amount paid"
}
},
"description": "monthly repayment information",
"title": "Repayment Amount"
},
"MonthPaymentInfo": {
"type": "object",
"properties": {
"month": {
"type": "integer",
"description": "specific month number of the amortization schedule"
},
"beginning_balance": {
"type": "double",
"description": "#the starting balance amount of the armotization schedule for each payment period#"
},
"interest": {
"type": "double",
"description": "#the interest amount paid for each period on the amortization schedule#"
},
"principle": {
"type": "double",
"description": "#the priciple amount paid for each period on the amortization schedule#"
},
"ending_balance": {
"type": "double",
"description": "#the ending balance amount of the armotization schedule for each payment period#"
}
},
"title": "monthlypaymentinfo",
"description": "the detailed information about the monthly payment"
},
"Result": {
"type": "object",
"properties": {
"theme": {
"type": "string",
"description": "The result of this repayment calculation."
},
"paymentinfo": {
"type": "object",
"description": "repayment information",
"items": {
"$ref": "#/components/schemas/PayInfoResult"
}
},
"monthpaymentinfolist": {
"type": "string",
"description": "detailed amortization schedule table. Return up to 30 items."
}
},
"title": "Calculation Result"
},
"CreditsCoreRate": {
"type": "object",
"properties": {
"creditscore": {
"type": "string",
"description": "range of the credit score."
},
"creditscore_rate": {
"type": "string",
"description": "interest rate under specific credit score range"
}
},
"title": "rateandscore",
"description": "the connection between interest rate and credit score"
},
"PersonalloansResponse": {
"type": "object",
"properties": {
"Describe": {
"type": "string",
"description": "The main content of the answer"
},
"paymentresultlist": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Result"
}
},
"Summarize": {
"type": "string",
"description": "summary of answers"
},
"url": {
"type": "string",
"description": "Calculate your personal loan payments accurately and quickly with the personal loan calculator."
}
},
"description": "repayment information",
"title": "PersonalloansResponse"
},
"CreditCardloansResponse": {
"type": "object",
"properties": {
"describe": {
"type": "string",
"description": "The main content of the answer"
},
"creditcardloansresult": {
"type": "object",
"items": {
"$ref": "#/components/schemas/CreditCardPayInfoResult"
}
},
"Summarize": {
"type": "string",
"description": "summary of answers"
},
"recommend": {
"type": "string",
"description": "recommend of answers"
},
"url": {
"type": "string",
"description": "Accurately and quickly calculate your credit card loan payments with the Credit Card Loan Calculator."
}
},
"description": "repayment information",
"title": "CreditCardloansResponse"
}
}
}
}
Discover other plugins from the finance category

PortfolioPilot
Get a detailed assessment of your portfolio and pull 12-month forecasted returns for individual securities.
0 Comments

Ramp
Plugin for managing a Ramp account. You can view transactions, reimbursements, cards, memos, receipts, and users.
0 Comments

Savvy Trader AI
Realtime stock, crypto and other investment data.
0 Comments

AITickerChat
Retrieve USA stock insights from SEC filings as well as Earnings Call Transcripts.
0 Comments

PortfoliosLab
Stocks, ETFs, funds, crypto analysis: historical performance, volatility, risk metrics, Sharpe ratio, drawdowns, etc.
0 Comments

eToro trading and investments
etoro social investments platform plugin, get news, rates, charts, copy leading investors and learn how to invest.
0 Comments

Polygon
Market data, news, and fundamentals for stocks, options, forex, and crypto from Polygon.io.
0 Comments

Alpha Vantage
Plugin for fetching financial data from Alpha Vantage.
0 Comments

PortfolioMeta
Analyze stocks and retrieve comprehensive real-time investment data and analytics.
0 Comments

Stonks AI
Fetch stock data based on a natural language query.
0 Comments

Statis Fund Finance
Financial data tool for analyzing equities. You can get price quotes, analyze moving averages, RSI, and more.
0 Comments

Options Pro
Options Pro is your personal options trading assistant to help you navigate market conditions.
0 Comments

Magnetis
Magnetis is a digital wealth manager. Get updated data on portfolios returns and allocations. Ask me about Magnetis.
0 Comments

FundsDB
Discover funding opportunities in UK and India on FundsDB. Type in your query in any language or /help for assistance.
0 Comments

Currency Converter
Convert currencies based on real-time rates!
0 Comments

Boolio Invest
The easiest way to analyze global stock values with the power of quantitative factor methodologies.
2 Comments
Acquire.com
Everything you need to buy and sell startups.
0 Comments

Abridged Due Diligence
Discover the details! Search through recent SEC filings, with links to deeper analysis.
0 Comments
Peel Hunt AI-ERA
AI Equity Research Assistant (AI-ERA).
0 Comments

Companies In The UK
Provides financial information on UK Companies.
0 Comments

ChatMoney
ChatMoney is a plugin for managing your finances.
0 Comments
Tax Calculator
Given an address (or city) in the United States and an amount, calculate the sales tax. Powered by the Avalara.
0 Comments

Forex-Rates
Forex Rates: Price analysis for currency markets. Gain insights, sentiment evaluation, and text completion.
0 Comments

Exchange Rates
Exchange Rates delivers real-time and historical data, enabling conversion and tracking for over 170 currencies.
0 Comments
Helper for site Instaforex company
Plugin that facilitates trading on the instaforex site.
0 Comments

FiscalNote
FiscalNote enables access to select market-leading, real-time data sets for legal, political, and regulatory information
0 Comments

Public
Get real-time and historical market data, including asset prices, news, research, and comprehensive financial analysis.
0 Comments

FinTorch Trading Assistant
Get a wide range of financial data companies to assist your trading / reearch / learning (financials, earning call transcript, analyst price prediction, DCF, social media sentiments, sales by business / geographic segmentation, insider trading information etc)
0 Comments

Traders Insight
Decode the latest technical analysis ideas for stocks and bitcoin from top traders.
0 Comments

Currency Today
Converts currency values based on the latest exchange rates.
0 Comments

Currency Converter
Convert currencies based on real-time rates.
0 Comments
Company Transcripts
Search and analyze the latest company transcripts for any stock (powered by Koyfin).
0 Comments

Interest Rates
Get Real Time Interest Rates From Central Banks
0 Comments

Finna Bolag
Seamlessly search for and retrieve Swedish companies' financial data.
0 Comments

Currency Converter
Convert currencies using the CoinGecko API.
0 Comments
OnePage Stock Ideas
Find a list of stock ideas by asking it or feeding it with news or article.
0 Comments

Austrian Bank Rates
Compare the rates and terms of checking accounts and savings accounts from Austrian banks.
0 Comments

AFinChat
Get information and analyze A-share stocks, but search for information only from China.
0 Comments

VAT-Search
Plugin for finding and validating VAT numbers of companies, sole traders and other organisations.
0 Comments
FCA FS Search
Search FCA and get product, individual and firm info using PRN, IRN and FRN.
0 Comments