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 |
|---|---|---|---|---|---|---|---|---|---|
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/16dbd68f-66ce-480b-ab89-9c865b1e7e74/0/1 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/variance | Compute the variance of one or several asset(s) from either:
* The asset returns
* The asset covariance matrix
* The asset volatility(ies)
References
* Wikipedia, Variance | 200 | null | {"assets": [{"assetVariance": 0.01}, {"assetVariance": 0.0025}]} | {"type": "object", "required": ["assets"], "properties": {"assets": {"type": "array", "items": {"type": "object", "required": ["assetVariance"], "properties": {"assetVariance": {"description": "The variance of the asset", "type": "number", "minimum": 0}}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/16dbd68f-66ce-480b-ab89-9c865b1e7e74/0/2 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/variance | Compute the variance of one or several asset(s) from either:
* The asset returns
* The asset covariance matrix
* The asset volatility(ies)
References
* Wikipedia, Variance | 200 | null | {"assets": [{"assetVariance": 0.010000000000000002}, {"assetVariance": 0.0025000000000000005}]} | {"type": "object", "required": ["assets"], "properties": {"assets": {"type": "array", "items": {"type": "object", "required": ["assetVariance"], "properties": {"assetVariance": {"description": "The variance of the asset", "type": "number", "minimum": 0}}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/ef4d977f-45f8-4921-8c91-50332de9a04e/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /portfolio/analysis/conditional-value-at-risk | Compute the conditional value at risk of one or several portfolio(s) from portfolio values.
References
* Wikipedia, Value at risk
* Acerbi, C. and Tasche, D. (2002), Expected Shortfall: A Natural Coherent Alternative to Value at Risk. Economic Notes, 31: 379-388 | 200 | null | {"portfolios": [{"portfolioConditionalValueAtRisk": 0.17647058823529413}]} | {"type": "object", "required": ["portfolios"], "properties": {"portfolios": {"type": "array", "minItems": 1, "items": {"type": "object", "required": ["portfolioConditionalValueAtRisk"], "properties": {"portfolioConditionalValueAtRisk": {"description": "The conditional value at risk of the portfolio", "type": "number"}}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/ba4a4eb6-bb75-4009-bc03-2e9c1dfb1bee/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /portfolio/simulation/rebalancing/drift-weight | Simulate the evolution of one or several portfolio(s) over one or several time period(s), the portfolio(s) being never rebalanced (a.k.a. buy and hold).
References
* Hillion, Pierre, The Ex-Ante Rebalancing Premium (March 11, 2016). INSEAD Working Paper No. 2016/15/FIN | 200 | null | {"portfolios": [{"portfolioValues": [100, 105, 110]}, {"portfolioValues": [100, 83.33333333333334, 75]}, {"portfolioValues": [100, 102, 98]}]} | {"type": "object", "required": ["portfolios"], "properties": {"portfolios": {"type": "array", "items": {"type": "object", "required": ["portfolioValues"], "properties": {"portfolioValues": {"description": "portfolioValues[t] is the value of the portfolio at the time t", "type": "array", "items": {"type": "number", "minimum": 0}}}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/3fe78be2-469c-46d8-95fe-a106f0abd9e2/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/covariance/matrix/exponentially-weighted | Compute an exponentially weighted covariance matrix of assets returns.
References
* RiskMetrics Group. Longerstaey, J. (1996). RiskMetrics technical document, Technical Report fourth edition | 200 | null | {"assetsCovarianceMatrix": [[1.9583333333333333e-05, -3.9166666666666665e-05], [-3.9166666666666665e-05, 7.833333333333333e-05]]} | {"type": "object", "required": ["assetsCovarianceMatrix"], "properties": {"assetsCovarianceMatrix": {"description": "assetsCovarianceMatrix[i][j] is the sample covariance between the asset i returns and the asset j returns", "type": "array", "minItems": 2, "items": {"type": "array", "minItems": 2, "items": {"type": "number"}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/5f0f6f30-6da5-438d-91fc-cc1bd22d8d75/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/correlation/matrix/shrinkage | Compute a correlation matrix as a convex linear combination of an assets correlation matrix and a target correlation matrix, the target correlation matrix being either:
* An equicorrelation matrix made of 1
* An equicorrelation matrix made of 0
* An equicorrelation matrix made of -1/(n-1), with n the number of assets
* A provided correlation matrix
References
* Steiner, Andreas, Manipulating Valid Correlation Matrices | 200 | null | {"assetsCorrelationMatrix": [[1, 0.75, 0.95], [0.75, 1, 0.85], [0.95, 0.85, 1]]} | {"type": "object", "required": ["assetsCorrelationMatrix"], "properties": {"assetsCorrelationMatrix": {"description": "assetsCorrelationMatrix[i][j] is the correlation between the asset i and the asset j", "type": "array", "minItems": 2, "items": {"type": "array", "minItems": 2, "items": {"type": "number"}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/a7cd5886-2a46-411d-b839-edcf806c6386/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/correlation/matrix/random | Generatea correlation matrix uniformly at random over the space of positive definite correlation matrices.
References
* Joe, H., Generating random correlation matrices based on partial correlations. Journal of Multivariate Analysis, 2006, 97, 2177-2189 | 200 | null | {"assetsCorrelationMatrix": [[1, 0.7606306078350177, 0.15733356650676536], [0.7606306078350177, 1, 0.7606306078350177], [0.15733356650676536, 0.7606306078350177, 1]]} | {"type": "object", "required": ["assetsCorrelationMatrix"], "properties": {"assetsCorrelationMatrix": {"description": "assetsCorrelationMatrix[i][j] is the correlation between the asset i and the asset j", "type": "array", "minItems": 2, "items": {"type": "array", "minItems": 2, "items": {"type": "number"}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/46895118-69fe-4058-815e-a430d2b657bf/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/returns | Compute the arithmetic return(s) of one or several asset(s) for one or several time period(s).
References
* Wikipedia, Rate of Return | 200 | null | {"assets": [{"assetReturns": [1]}, {"assetReturns": [0.5, 1]}]} | {"type": "object", "required": ["assets"], "properties": {"assets": {"type": "array", "items": {"type": "object", "required": ["assetReturns"], "properties": {"assetReturns": {"description": "assetReturns[t] is the arithmetic return of the asset from the time t-1 to the time t, in percentage", "type": "array", "items": {"type": "number"}}}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/f72048f1-f590-4461-a50b-74c48e21dd03/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /portfolio/analysis/contributions/return | Perform a return contribution analysis of one or several portfolio(s), optionally using groups of assets.
References
* Carl R. Bacon, Practical Portfolio Performance Measurement and Attribution | 200 | null | {"portfolios": [{"assetsReturnContributions": [0.005, -0.0025, 0.00625], "assetsGroupsReturnContributions": [0.0025, 0.00625]}]} | {"type": "object", "required": ["portfolios"], "properties": {"portfolios": {"type": "array", "items": {"type": "object", "required": ["assetsReturnContributions"], "properties": {"assetsReturnContributions": {"description": "assetsReturnContributions[i] is the return contribution of the asset i to the return of the portfolio", "type": "array", "minItems": 1, "items": {"type": "number"}}, "assetsGroupsReturnContributions": {"description": "assetsGroupsReturnContributions[k] is the return contribution of the group of assets k to the return of the portfolio", "type": "array", "minItems": 1, "items": {"type": "number"}}}}}}} |
6b2bb50c-9968-40b4-90eb-bfdb6cde6a3b/77376e93-22b3-4029-9d69-43523acb1863/0/0 | Portfolio Optimizer | Portfolio Optimizer is a Web API democratizing the access to the Nobel Prize-winning science of portfolio optimization. | null | /assets/variance/sample | Compute the sample variance of one or several asset(s) from the asset(s) returns.
This endpoint is similar to the endpoint /assets/variance, but uses Bessel's correction to compute the variance.
References
* Wikipedia, Variance | 200 | null | {"assets": [{"assetVariance": 2.5e-05}, {"assetVariance": 0.0001}]} | {"type": "object", "required": ["assets"], "properties": {"assets": {"type": "array", "items": {"type": "object", "required": ["assetVariance"], "properties": {"assetVariance": {"description": "The sample variance of the asset", "type": "number", "minimum": 0}}}}}} |
7ef599c3-c5ff-49e5-942a-e32c53402888/4e921f94-50aa-4930-9ef2-7d7303a56934/0/0 | TradeIndicator.io - NSE (India) | Are you investing a lot of time researching technical indicators to enable your trading decisions? Statistics show that traders spend between 2-4 hours daily on stock screening and fundamental analysis.
We at TradeIndicators aspire to help you cut down this time significantly. We offer,
. AI-based 100+ indicators
. Combine & generate your unique indicator
. Filter stocks based on your customized indicators
We support all popular technical indicators such as MACD, RSI, Stochastic, Ichimoku, ... | null | Stock List Based On Technical Indicators | Returns all the NSE tickers that conform to the technical indicators that are applied.
More than 1 indicator can be applied | 200 | Response Format | [{"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "GOLDIAM", "Company": "Goldiam International Limited", "Previous Close": "138.80", "Open": "142.40", "Low": "136.95", "High": "143.65", "Close": "138.40", "Volume": "205946", "Price Change in %": "-0.3", "Price Change in % - Last 7 days": "-8.40", "Price Change in % - Last 30 days": "0.10", "Price Change in % - Last 90 days": "-11.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "GMBREW", "Company": "GM Breweries Limited", "Previous Close": "564.10", "Open": "569.90", "Low": "566.55", "High": "574.40", "Close": "570.60", "Volume": "15847", "Price Change in %": "1.2", "Price Change in % - Last 7 days": "-2.00", "Price Change in % - Last 30 days": "-4.10", "Price Change in % - Last 90 days": "-22.40"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "KEC", "Company": "KEC International Limited", "Previous Close": "399.50", "Open": "401.60", "Low": "386.50", "High": "403.00", "Close": "394.85", "Volume": "745048", "Price Change in %": "-1.2", "Price Change in % - Last 7 days": "-16.40", "Price Change in % - Last 30 days": "-0.10", "Price Change in % - Last 90 days": "5.20"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "WEBELSOLAR", "Company": "Websol Energy System Limited", "Previous Close": "90.35", "Open": "90.05", "Low": "85.50", "High": "91.50", "Close": "87.10", "Volume": "180122", "Price Change in %": "-3.6", "Price Change in % - Last 7 days": "0.50", "Price Change in % - Last 30 days": "6.30", "Price Change in % - Last 90 days": "-6.90"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "SARDAEN", "Company": "Sarda Energy & Minerals Limited", "Previous Close": "864.10", "Open": "867.90", "Low": "855.00", "High": "880.45", "Close": "868.50", "Volume": "21934", "Price Change in %": "0.5", "Price Change in % - Last 7 days": "-7.70", "Price Change in % - Last 30 days": "6.60", "Price Change in % - Last 90 days": "-20.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "MTEDUCARE", "Company": "MT Educare Limited", "Previous Close": "8.85", "Open": "8.75", "Low": "8.45", "High": "9.00", "Close": "8.60", "Volume": "204802", "Price Change in %": "-2.8", "Price Change in % - Last 7 days": "-4.10", "Price Change in % - Last 30 days": "7.40", "Price Change in % - Last 90 days": "15.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "MANALIPETC", "Company": "Manali Petrochemicals Limited", "Previous Close": "93.05", "Open": "93.80", "Low": "90.15", "High": "94.70", "Close": "91.95", "Volume": "994749", "Price Change in %": "-1.2", "Price Change in % - Last 7 days": "-13.40", "Price Change in % - Last 30 days": "-7.40", "Price Change in % - Last 90 days": "-17.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "HTMEDIA", "Company": "HT Media Limited", "Previous Close": "19.95", "Open": "20.40", "Low": "19.65", "High": "20.40", "Close": "20.05", "Volume": "577041", "Price Change in %": "0.5", "Price Change in % - Last 7 days": "-5.30", "Price Change in % - Last 30 days": "2.10", "Price Change in % - Last 90 days": "-49.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "HIRECT", "Company": "Hind Rectifiers Limited", "Previous Close": "172.70", "Open": "172.00", "Low": "167.20", "High": "179.40", "Close": "168.65", "Volume": "8814", "Price Change in %": "-2.3", "Price Change in % - Last 7 days": "-8.50", "Price Change in % - Last 30 days": "-6.00", "Price Change in % - Last 90 days": "-9.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "FINOPB", "Company": "Fino Payments Bank Limited", "Previous Close": "250.55", "Open": "253.05", "Low": "246.95", "High": "253.95", "Close": "248.30", "Volume": "22558", "Price Change in %": "-0.9", "Price Change in % - Last 7 days": "-6.30", "Price Change in % - Last 30 days": "4.20", "Price Change in % - Last 90 days": "-5.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "EPL", "Company": "EPL Limited", "Previous Close": "165.05", "Open": "166.65", "Low": "165.00", "High": "166.85", "Close": "165.70", "Volume": "1986147", "Price Change in %": "0.4", "Price Change in % - Last 7 days": "-7.70", "Price Change in % - Last 30 days": "9.80", "Price Change in % - Last 90 days": "-11.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "AKSHOPTFBR", "Company": "Aksh Optifibre Limited", "Previous Close": "9.50", "Open": "9.45", "Low": "9.35", "High": "9.80", "Close": "9.35", "Volume": "526561", "Price Change in %": "-1.6", "Price Change in % - Last 7 days": "-1.50", "Price Change in % - Last 30 days": "5.60", "Price Change in % - Last 90 days": "-6.50"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "ADFFOODS", "Company": "ADF Foods Limited", "Previous Close": "698.85", "Open": "705.75", "Low": "690.05", "High": "715.00", "Close": "704.90", "Volume": "21849", "Price Change in %": "0.9", "Price Change in % - Last 7 days": "0.40", "Price Change in % - Last 30 days": "-3.50", "Price Change in % - Last 90 days": "-8.30"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "LUXIND", "Company": "Lux Industries Limited", "Previous Close": "1803.30", "Open": "1818.85", "Low": "1805.75", "High": "1834.00", "Close": "1809.80", "Volume": "68552", "Price Change in %": "0.4", "Price Change in % - Last 7 days": "-1.20", "Price Change in % - Last 30 days": "0.80", "Price Change in % - Last 90 days": "-31.40"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "HCC", "Company": "Hindustan Construction Company Limited", "Previous Close": "12.15", "Open": "12.30", "Low": "12.20", "High": "12.50", "Close": "12.30", "Volume": "3521638", "Price Change in %": "1.2", "Price Change in % - Last 7 days": "-5.80", "Price Change in % - Last 30 days": "1.30", "Price Change in % - Last 90 days": "-25.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "GLOBUSSPR", "Company": "Globus Spirits Limited", "Previous Close": "907.80", "Open": "928.00", "Low": "901.25", "High": "928.00", "Close": "913.25", "Volume": "117108", "Price Change in %": "0.6", "Price Change in % - Last 7 days": "-12.80", "Price Change in % - Last 30 days": "-0.80", "Price Change in % - Last 90 days": "-48.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "GLOBE", "Company": "Globe Textiles (India) Limited", "Previous Close": "7.60", "Open": "7.75", "Low": "7.45", "High": "7.80", "Close": "7.50", "Volume": "744271", "Price Change in %": "-1.3", "Price Change in % - Last 7 days": "-10.10", "Price Change in % - Last 30 days": "10.40", "Price Change in % - Last 90 days": "-5.20"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "DTIL", "Company": "Dhunseri Tea & Industries Limited", "Previous Close": "205.50", "Open": "208.55", "Low": "201.70", "High": "208.55", "Close": "204.25", "Volume": "3592", "Price Change in %": "-0.6", "Price Change in % - Last 7 days": "-8.50", "Price Change in % - Last 30 days": "-4.20", "Price Change in % - Last 90 days": "-24.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "ALBERTDAVD", "Company": "Albert David Limited", "Previous Close": "542.45", "Open": "537.30", "Low": "533.05", "High": "546.65", "Close": "538.55", "Volume": "5605", "Price Change in %": "-0.7", "Price Change in % - Last 7 days": "-6.50", "Price Change in % - Last 30 days": "2.60", "Price Change in % - Last 90 days": "0.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "TNPETRO", "Company": "Tamilnadu PetroProducts Limited", "Previous Close": "96.95", "Open": "97.20", "Low": "97.05", "High": "98.70", "Close": "97.40", "Volume": "104157", "Price Change in %": "0.5", "Price Change in % - Last 7 days": "-2.60", "Price Change in % - Last 30 days": "8.00", "Price Change in % - Last 90 days": "-14.90"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "TEXMOPIPES", "Company": "Texmo Pipes and Products Limited", "Previous Close": "66.70", "Open": "62.25", "Low": "59.45", "High": "63.90", "Close": "59.70", "Volume": "866743", "Price Change in %": "-10.5", "Price Change in % - Last 7 days": "-9.20", "Price Change in % - Last 30 days": "-0.50", "Price Change in % - Last 90 days": "-29.30"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "SWANENERGY", "Company": "Swan Energy Limited", "Previous Close": "206.65", "Open": "208.00", "Low": "203.05", "High": "212.00", "Close": "204.30", "Volume": "75812", "Price Change in %": "-1.1", "Price Change in % - Last 7 days": "-4.70", "Price Change in % - Last 30 days": "7.00", "Price Change in % - Last 90 days": "12.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "SUNTECK", "Company": "Sunteck Realty Limited", "Previous Close": "477.45", "Open": "480.90", "Low": "474.05", "High": "483.60", "Close": "477.20", "Volume": "339629", "Price Change in %": "-0.1", "Price Change in % - Last 7 days": "-9.30", "Price Change in % - Last 30 days": "-2.00", "Price Change in % - Last 90 days": "1.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "STEL", "Company": "Stel Holdings Limited", "Previous Close": "110.65", "Open": "111.15", "Low": "110.55", "High": "113.40", "Close": "112.15", "Volume": "6227", "Price Change in %": "1.4", "Price Change in % - Last 7 days": "-4.10", "Price Change in % - Last 30 days": "8.80", "Price Change in % - Last 90 days": "-3.40"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "SIYSIL", "Company": "Siyaram Silk Mills Limited", "Previous Close": "501.15", "Open": "508.00", "Low": "495.10", "High": "508.75", "Close": "498.45", "Volume": "69042", "Price Change in %": "-0.5", "Price Change in % - Last 7 days": "-8.90", "Price Change in % - Last 30 days": "1.60", "Price Change in % - Last 90 days": "19.30"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "SARLAPOLY", "Company": "Sarla Performance Fibers Limited", "Previous Close": "48.20", "Open": "48.20", "Low": "46.65", "High": "48.95", "Close": "47.05", "Volume": "230649", "Price Change in %": "-2.4", "Price Change in % - Last 7 days": "-4.10", "Price Change in % - Last 30 days": "1.20", "Price Change in % - Last 90 days": "-20.60"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "SALSTEEL", "Company": "S.A.L. Steel Limited", "Previous Close": "8.50", "Open": "8.65", "Low": "8.40", "High": "8.65", "Close": "8.45", "Volume": "66343", "Price Change in %": "-0.6", "Price Change in % - Last 7 days": "-3.90", "Price Change in % - Last 30 days": "2.60", "Price Change in % - Last 90 days": "-17.20"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "RATEGAIN", "Company": "Rategain Travel Technologies Limited", "Previous Close": "279.90", "Open": "281.40", "Low": "274.55", "High": "287.25", "Close": "276.55", "Volume": "302148", "Price Change in %": "-1.2", "Price Change in % - Last 7 days": "-18.50", "Price Change in % - Last 30 days": "11.90", "Price Change in % - Last 90 days": "-15.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "PASUPTAC", "Company": "Pasupati Acrylon Limited", "Previous Close": "33.20", "Open": "33.85", "Low": "33.20", "High": "34.50", "Close": "33.90", "Volume": "37652", "Price Change in %": "2.1", "Price Change in % - Last 7 days": "-2.00", "Price Change in % - Last 30 days": "5.80", "Price Change in % - Last 90 days": "-14.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "LIQUIDETF", "Company": "LIQUIDETF", "Previous Close": "1000.00", "Open": "1000.00", "Low": "999.99", "High": "1000.01", "Close": "999.99", "Volume": "28759", "Price Change in %": "0.0", "Price Change in % - Last 7 days": "0.00", "Price Change in % - Last 30 days": "0.00", "Price Change in % - Last 90 days": "0.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "LINCOLN", "Company": "Lincoln Pharmaceuticals Limited", "Previous Close": "289.10", "Open": "290.25", "Low": "285.85", "High": "293.35", "Close": "288.75", "Volume": "29907", "Price Change in %": "-0.1", "Price Change in % - Last 7 days": "-3.80", "Price Change in % - Last 30 days": "-2.20", "Price Change in % - Last 90 days": "-10.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "JAYAGROGN", "Company": "Jayant Agro Organics Limited", "Previous Close": "211.65", "Open": "213.75", "Low": "209.50", "High": "215.00", "Close": "211.65", "Volume": "41665", "Price Change in %": "0.0", "Price Change in % - Last 7 days": "-2.20", "Price Change in % - Last 30 days": "5.30", "Price Change in % - Last 90 days": "-14.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "IZMO", "Company": "IZMO Limited", "Previous Close": "73.25", "Open": "74.65", "Low": "71.40", "High": "74.95", "Close": "72.40", "Volume": "34049", "Price Change in %": "-1.2", "Price Change in % - Last 7 days": "-2.00", "Price Change in % - Last 30 days": "2.70", "Price Change in % - Last 90 days": "-14.40"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "IDEA", "Company": "Vodafone Idea Limited", "Previous Close": "8.60", "Open": "8.70", "Low": "8.60", "High": "8.75", "Close": "8.65", "Volume": "42328775", "Price Change in %": "0.6", "Price Change in % - Last 7 days": "-4.80", "Price Change in % - Last 30 days": "0.60", "Price Change in % - Last 90 days": "-12.60"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "DWARKESH", "Company": "Dwarikesh Sugar Industries Limited", "Previous Close": "103.80", "Open": "105.25", "Low": "105.00", "High": "107.20", "Close": "105.25", "Volume": "931684", "Price Change in %": "1.4", "Price Change in % - Last 7 days": "-8.60", "Price Change in % - Last 30 days": "3.10", "Price Change in % - Last 90 days": "-13.50"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "CAPTRUST", "Company": "Capital Trust Limited", "Previous Close": "100.50", "Open": "102.70", "Low": "100.15", "High": "103.00", "Close": "100.95", "Volume": "2615", "Price Change in %": "0.4", "Price Change in % - Last 7 days": "-2.00", "Price Change in % - Last 30 days": "4.70", "Price Change in % - Last 90 days": "-8.10"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "BBTC", "Company": "Bombay Burmah Trading Corporation Limited", "Previous Close": "912.15", "Open": "916.00", "Low": "912.55", "High": "927.95", "Close": "915.45", "Volume": "29950", "Price Change in %": "0.4", "Price Change in % - Last 7 days": "-4.40", "Price Change in % - Last 30 days": "1.70", "Price Change in % - Last 90 days": "6.30"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "BALKRISIND", "Company": "Balkrishna Industries Limited", "Previous Close": "2163.90", "Open": "2175.00", "Low": "2155.40", "High": "2194.00", "Close": "2168.85", "Volume": "317371", "Price Change in %": "0.2", "Price Change in % - Last 7 days": "-9.20", "Price Change in % - Last 30 days": "0.10", "Price Change in % - Last 90 days": "5.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "ARMANFIN", "Company": "Arman Financial Services Limited", "Previous Close": "1212.65", "Open": "1258.00", "Low": "1211.05", "High": "1258.00", "Close": "1230.40", "Volume": "9392", "Price Change in %": "1.5", "Price Change in % - Last 7 days": "-0.80", "Price Change in % - Last 30 days": "7.60", "Price Change in % - Last 90 days": "25.00"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "AIRAN", "Company": "Airan Limited", "Previous Close": "20.20", "Open": "19.85", "Low": "19.70", "High": "20.30", "Close": "19.80", "Volume": "310233", "Price Change in %": "-2.0", "Price Change in % - Last 7 days": "-3.00", "Price Change in % - Last 30 days": "-0.70", "Price Change in % - Last 90 days": "9.70"}, {"Market Date": "2022-08-11", "Exchange": "NSE", "Ticker Code": "ADVENZYMES", "Company": "Advanced Enzyme Technologies Limited", "Previous Close": "269.90", "Open": "271.25", "Low": "263.85", "High": "271.95", "Close": "264.75", "Volume": "138719", "Price Change in %": "-1.9", "Price Change in % - Last 7 days": "-8.60", "Price Change in % - Last 30 days": "-1.20", "Price Change in % - Last 90 days": "-6.90"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"Market Date": {"type": "string"}, "Exchange": {"type": "string"}, "Ticker Code": {"type": "string"}, "Company": {"type": "string"}, "Previous Close": {"type": "string"}, "Open": {"type": "string"}, "Low": {"type": "string"}, "High": {"type": "string"}, "Close": {"type": "string"}, "Volume": {"type": "string"}, "Price Change in %": {"type": "string"}, "Price Change in % - Last 7 days": {"type": "string"}, "Price Change in % - Last 30 days": {"type": "string"}, "Price Change in % - Last 90 days": {"type": "string"}}, "required": ["Close", "Company", "Exchange", "High", "Low", "Market Date", "Open", "Previous Close", "Price Change in %", "Price Change in % - Last 30 days", "Price Change in % - Last 7 days", "Price Change in % - Last 90 days", "Ticker Code", "Volume"]}} |
851f5b90-b17d-4488-8ca8-c079db176ccd/96220d49-7e22-413b-ba07-8f560b4be80c/0/0 | NFTs by address | Get all NFTs owned by an address at scale | 8.2 | getNFTs_byaddress | Gets all NFTs currently owned by a given address. Unlimited, results display in 100s. | 200 | Response | {"ownedNfts": [{"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e6"}, "balance": "1"}, {"contract": {"address": "0x8f4ca9a9df620ac58152f5369650dbccd006de37"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000002a"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e7"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e8"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e9"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000382"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000007a7"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000097d"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000002fc"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a1a"}, "balance": "1"}, {"contract": {"address": "0x69c40e500b84660cb2ab09cb9614fa2387f95f64"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000386"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e2"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e3"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e4"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009e5"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009cd"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009ce"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009cf"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000007ee"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a0b"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a0d"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a0c"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a0f"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000017"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009ca"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a0e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009cb"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009cc"}, "balance": "1"}, {"contract": {"address": "0x5ab21ec0bfa0b29545230395e3adaca7d552c948"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000006dc"}, "balance": "1"}, {"contract": {"address": "0x3b3ee1931dc30c1957379fac9aba94d1c48a5405"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000001a"}, "balance": "1"}, {"contract": {"address": "0x69c40e500b84660cb2ab09cb9614fa2387f95f64"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000391"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000008d5"}, "balance": "1"}, {"contract": {"address": "0x495f947276749ce646f68ac8c248420045cb7b5e"}, "id": {"tokenId": "0xe96752534bf35669ce26f5605ac4e525962a9b05000000000000030000000005"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000037a"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000037b"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000037c"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000037e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a1c"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a1b"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a1e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a1d"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009da"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009db"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a1f"}, "balance": "1"}, {"contract": {"address": "0xf9a423b86afbf8db41d7f24fa56848f56684e43f"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000180"}, "balance": "1"}, {"contract": {"address": "0x3b3ee1931dc30c1957379fac9aba94d1c48a5405"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a62"}, "balance": "1"}, {"contract": {"address": "0xd4e4078ca3495de5b1d4db434bebc5a986197782"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000001a6"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000038b"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000038c"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000002a"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000038e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000244b"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000006ae"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000001f9f"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009ea"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000009eb"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000014e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000001381"}, "balance": "1"}, {"contract": {"address": "0x495f947276749ce646f68ac8c248420045cb7b5e"}, "id": {"tokenId": "0x6aa22a902ebad03cef40454f4afd2423270c11a9000000000002630000000001"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000070f"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000010c4"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000960"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000018aa"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000980"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000003b9"}, "balance": "1"}, {"contract": {"address": "0x15f5ee2362f686617ee97c166f8e1b681dda7e8c"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000000b9"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000978"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000979"}, "balance": "1"}, {"contract": {"address": "0x0574c34385b039c2bb8db898f61b7767024a9449"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000037"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000971"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000972"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000973"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000974"}, "balance": "1"}, {"contract": {"address": "0x69c40e500b84660cb2ab09cb9614fa2387f95f64"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000029b"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000975"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000976"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000977"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000990"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000002135"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000991"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000097a"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000097c"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000097d"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000182a"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000097e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000097f"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000989"}, "balance": "1"}, {"contract": {"address": "0xd754937672300ae6708a51229112de4017810934"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000026"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000981"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000982"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000983"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000984"}, "balance": "1"}, {"contract": {"address": "0x7bd29408f11d2bfc23c34f18275bbf23bb716bc7"}, "id": {"tokenId": "0x000000000000000000000000000000000000000000000000000000000000161e"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000985"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000744"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000988"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000b9d"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000b9f"}, "balance": "1"}, {"contract": {"address": "0x97597002980134bea46250aa0510c9b90d87a587"}, "id": {"tokenId": "0x0000000000000000000000000000000000000000000000000000000000000b9e"}, "balance": "1"}, {"contract": {"address": "0x5bdf397bb2912859dbd8011f320a222f79a28d2e"}, "id": {"tokenId": "0x00000000000000000000000000000000000000000000000000000000000006f7"}, "balance": "1"}], "pageKey": "24bd84c7-5b6d-442b-ad3c-b3e254474da7", "totalCount": 283} | {"type": "object", "properties": {"ownedNfts": {"type": "array", "items": {"type": "object", "properties": {"contract": {"type": "object", "properties": {"address": {"type": "string"}}}, "id": {"type": "object", "properties": {"tokenId": {"type": "string"}}}, "balance": {"type": "string"}}}}, "pageKey": {"type": "string"}, "totalCount": {"type": "integer"}}} |
851f5b90-b17d-4488-8ca8-c079db176ccd/66e77d73-6339-411e-9587-9f8e070d6b7c/0/0 | NFTs by address | Get all NFTs owned by an address at scale | 8.2 | getNFTs_metadata | Get NFTs metadata, attributes and enclosed media. | 200 | Response | {"contract": {"address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D"}, "id": {"tokenId": "4671", "tokenMetadata": {"tokenType": "ERC721"}}, "title": "", "description": "", "externalDomainViewUrl": "ipfs://QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4671", "media": {"uri": "ipfs://Qmci1pGaUmvb6StPxdGp1WqfK9QjPjdf43nCbY5LJ9y1MY"}, "alternateMedia": [{"uri": "https://ipfs.io/ipfs/Qmci1pGaUmvb6StPxdGp1WqfK9QjPjdf43nCbY5LJ9y1MY"}], "metadata": {"image": "ipfs://Qmci1pGaUmvb6StPxdGp1WqfK9QjPjdf43nCbY5LJ9y1MY", "attributes": [{"trait_type": "Fur", "value": "Black"}, {"trait_type": "Mouth", "value": "Bored"}, {"trait_type": "Hat", "value": "Party Hat 1"}, {"trait_type": "Earring", "value": "Gold Stud"}, {"trait_type": "Background", "value": "Aquamarine"}, {"trait_type": "Eyes", "value": "Sleepy"}]}} | {"type": "object", "properties": {"contract": {"type": "object", "properties": {"address": {"type": "string"}}}, "id": {"type": "object", "properties": {"tokenId": {"type": "string"}, "tokenMetadata": {"type": "object", "properties": {"tokenType": {"type": "string"}}}}}, "title": {"type": "string"}, "description": {"type": "string"}, "externalDomainViewUrl": {"type": "string"}, "media": {"type": "object", "properties": {"uri": {"type": "string"}}}, "alternateMedia": {"type": "array", "items": {"type": "object", "properties": {"uri": {"type": "string"}}}}, "metadata": {"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}}}}}}} |
f59ce241-bde1-478b-988e-2afc4a9e162f/be9ab0d8-2b7b-4e55-822a-ae39bd2b0357/0/0 | Rarible Data Scraper | NFTsmaker.io its first API to fetch all data displayed of rarible NFTs marketplace | 0 | Get List of auctions | Of Rarible marketplace, you will found open Auctions display most NFT listed, current endpoint offer your this Data to fetch | 200 | Auctions list | [{"id": "0xf6793da657495ffeff9ee6350824910abc21356c", "name": "Rarible", "pic": "https://ipfs.io/ipfs/Qmcy6LyYhHQoCpRneFQgidvWrThzojjJds29GbP7zPdNZx", "symbol": "RARI", "count": 62, "sum": 878728.3957514198}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "pic": {"type": "string"}, "symbol": {"type": "string"}, "count": {"type": "integer"}, "sum": {"type": "number"}}}} |
f59ce241-bde1-478b-988e-2afc4a9e162f/252ff37c-2edd-4fc4-af4d-6dc9e9b86083/0/0 | Rarible Data Scraper | NFTsmaker.io its first API to fetch all data displayed of rarible NFTs marketplace | 0 | Get Hot Bids | Of Rarible marketplace, you will found Hot Bids section display most NFT listed, current endpoint offer your this Data to fetch | 200 | Hot Bids | {"orderId": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2:0:0x7f9bf0c38c699cbb2c6e888c00c3af5bbc6a9899:0x3e841c1d8d094733a5ee9f4c976ea779f2d55e54:10034:0xdc19356f7d95bd1393adc490291dcdf81b2c0cb419820755f767986e68df96d9", "buyToken": "0x3e841c1d8d094733a5ee9f4c976ea779f2d55e54", "buyTokenId": "10034", "buyPriceEth": 2, "createDate": "2021-11-01T22:08:03.836+00:00", "categories": [], "id": "0x3e841c1d8d094733a5ee9f4c976ea779f2d55e54:10034"} | {"type": "object", "properties": {"orderId": {"type": "string"}, "buyToken": {"type": "string"}, "buyTokenId": {"type": "string"}, "buyPriceEth": {"type": "integer"}, "createDate": {"type": "string"}, "categories": {"type": "array"}, "id": {"type": "string"}}} |
f59ce241-bde1-478b-988e-2afc4a9e162f/88da4305-127b-4b40-b4c7-c940e5d546c6/0/0 | Rarible Data Scraper | NFTsmaker.io its first API to fetch all data displayed of rarible NFTs marketplace | 0 | Get List of Top Sellers | Current Endpoint offer you Data of best sellers Rarible platform by day set us params | 200 | example of seller object | [{"address": "0x38d3bf727ab9830b2af0e1c0277234c0aa0dbaa8", "amount": 173580.12921399402, "count": 20}] | {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "amount": {"type": "number"}, "count": {"type": "integer"}}}} |
f59ce241-bde1-478b-988e-2afc4a9e162f/1b393ecb-f267-4adc-86b2-56aabbf15b3a/0/0 | Rarible Data Scraper | NFTsmaker.io its first API to fetch all data displayed of rarible NFTs marketplace | 0 | Get Top Collection | You can get the Top collection of Nfts by day and size selected:
for example you can get best or Top collection of curent day, or of last 7 day
Notice: 'The maximum of size its 100' | 200 | Top Collection of last 7 days | [{"cover": "https://ipfs.io/ipfs/QmekZpgh1rQwaB6qK4KtasyKCWiQvGQemZzACmJJ5wE7Bh", "id": "0xf3114dd5c5b50a573e66596563d15a630ed359b4", "name": "Fat Ape Club", "pic": "https://ipfs.io/ipfs/QmYQamC8GvBMz5WMCGD17xBZ7RVXZy8gzaYmMwsUDqCL8u", "shortUrl": "fatapeclubcollection", "symbol": "FAPE", "count": 1011, "sum": 2976824.2056794926, "url": "https://rarible.com/collection/0xf3114dd5c5b50a573e66596563d15a630ed359b4"}] | {"type": "array", "items": {"type": "object", "properties": {"cover": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "pic": {"type": "string"}, "shortUrl": {"type": "string"}, "symbol": {"type": "string"}, "count": {"type": "integer"}, "sum": {"type": "number"}, "url": {"type": "string"}}}} |
f59ce241-bde1-478b-988e-2afc4a9e162f/b34f5f35-136c-4963-93cf-ff4fbbc3e906/0/0 | Rarible Data Scraper | NFTsmaker.io its first API to fetch all data displayed of rarible NFTs marketplace | 0 | Get Hot Collection | Of rarible marketplace, you will found Hot Collection section display most NFT listed, current endpoint offer your this Data to fetch | 200 | Hor Collection Example | [{"cover": "https://ipfs.io/ipfs/QmZdkFrJcKAh6WTei1ZTxu8DqKPSZYyM2Ny3nQW1Z394BM", "id": "0x696171b254378fd57e2be1040033058c249baa2f", "name": "Crypto Stars", "pic": "https://ipfs.io/ipfs/QmZdkFrJcKAh6WTei1ZTxu8DqKPSZYyM2Ny3nQW1Z394BM", "shortUrl": "thecryptostars", "symbol": "CRYPTOSTARS", "count": 28, "sum": 345986.23275301186}] | {"type": "array", "items": {"type": "object", "properties": {"cover": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "pic": {"type": "string"}, "shortUrl": {"type": "string"}, "symbol": {"type": "string"}, "count": {"type": "integer"}, "sum": {"type": "number"}}}} |
f59ce241-bde1-478b-988e-2afc4a9e162f/014bc58f-e94c-4d6e-89d8-1e6d3758934e/0/0 | Rarible Data Scraper | NFTsmaker.io its first API to fetch all data displayed of rarible NFTs marketplace | 0 | Get List of Top Buyers | Current Endpoint offer you Data of best buyers Rarible platform by day set us params | 200 | list byers | [{"address": "0x48b43769b181da1b35ae46bef61e3bfbfbe2a361", "amount": 34597.761365102386, "count": 1}] | {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "amount": {"type": "number"}, "count": {"type": "integer"}}}} |
eef4f91f-39a0-4117-b2a0-56fdcc903f18/d7a1aad0-4c8e-49c7-a6f5-3b12d213a741/0/0 | Fast Currency Convertor | The "Fast Currency Converter API" is a powerful tool that allows developers to integrate currency conversion capabilities into their applications or websites seamlessly. It serves as an interface between the developer's code and external currency exchange rate data sources, providing a convenient and efficient method to retrieve real-time currency exchange rates and perform accurate conversions.
Developers can access the Fast Currency Converter API by making HTTP requests to its endpoints. T... | 5.4 | Convert Currency | Converts an amount of one currency into that of another | 200 | New Example | {"status": true, "value": "147.8666"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"status": {"type": "boolean"}, "value": {"type": "string"}}, "required": ["status", "value"]} |
8a0ffdf4-836a-4bff-b588-cd34c5560542/fe6f7b7e-fc09-4048-a3f4-e0467fe04365/0/0 | Debank Unofficial Wallet Portfolio Balance API | Quickly access comprehensive portfolio balances for cryptocurrency addresses across Ethereum + BSC + Arbitrum + zkSync + Polygon & 67+ chains. | 8.7 | total_balance | Effortlessly retrieve detailed portfolio balances for any specified address, encompassing all utilized EVM chains. Our API distinctly provides separated balance reports for each chain, alongside a cumulative value in USD, offering a comprehensive financial overview. | 200 | Response | {"total_usd_value": 956.6910496740726, "chain_list": [{"id": "eth", "community_id": 1, "name": "Ethereum", "native_token_id": "eth", "logo_url": "https://static.debank.com/image/chain/logo_url/eth/42ba589cd077e7bdd97db6480b0ff61d.png", "wrapped_token_id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "is_support_history": true, "born_at": 1699376339, "usd_value": 956.6910496740726}, {"id": "bsc", "community_id": 56, "name": "BNB Chain", "native_token_id": "bsc", "logo_url": "https://static.debank.com/image/chain/logo_url/bsc/bc73fa84b7fc5337905e527dadcbc854.png", "wrapped_token_id": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "xdai", "community_id": 100, "name": "Gnosis Chain", "native_token_id": "xdai", "logo_url": "https://static.debank.com/image/chain/logo_url/xdai/43c1e09e93e68c9f0f3b132976394529.png", "wrapped_token_id": "0xe91d153e0b41518a2ce8dd3d7944fa863463a97d", "is_support_history": true, "born_at": 1699376385, "usd_value": 0}, {"id": "matic", "community_id": 137, "name": "Polygon", "native_token_id": "matic", "logo_url": "https://static.debank.com/image/chain/logo_url/matic/52ca152c08831e4765506c9bd75767e8.png", "wrapped_token_id": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", "is_support_history": true, "born_at": 1699376351, "usd_value": 0}, {"id": "ftm", "community_id": 250, "name": "Fantom", "native_token_id": "ftm", "logo_url": "https://static.debank.com/image/chain/logo_url/ftm/14133435f89637157a4405e954e1b1b2.png", "wrapped_token_id": "0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "okt", "community_id": 66, "name": "OKC", "native_token_id": "okt", "logo_url": "https://static.debank.com/image/chain/logo_url/okt/428bf6035abb3863c9f5c1a10dc3afd3.png", "wrapped_token_id": "0x8f8526dbfd6e38e3d8307702ca8469bae6c56c15", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "heco", "community_id": 128, "name": "HECO", "native_token_id": "heco", "logo_url": "https://static.debank.com/image/chain/logo_url/heco/db5152613c669e0cc8624d466d6c94ea.png", "wrapped_token_id": "0x5545153ccfca01fbd7dd11c0b23ba694d9509a6f", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "avax", "community_id": 43114, "name": "Avalanche", "native_token_id": "avax", "logo_url": "https://static.debank.com/image/chain/logo_url/avax/4d1649e8a0c7dec9de3491b81807d402.png", "wrapped_token_id": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "op", "community_id": 10, "name": "Optimism", "native_token_id": "op", "logo_url": "https://static.debank.com/image/chain/logo_url/op/01ae734fe781c9c2ae6a4cc7e9244056.png", "wrapped_token_id": "0x4200000000000000000000000000000000000006", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "arb", "community_id": 42161, "name": "Arbitrum", "native_token_id": "arb", "logo_url": "https://static.debank.com/image/chain/logo_url/arb/854f629937ce94bebeb2cd38fb336de7.png", "wrapped_token_id": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "celo", "community_id": 42220, "name": "Celo", "native_token_id": "celo", "logo_url": "https://static.debank.com/image/chain/logo_url/celo/41da5c1d3c0945ae822a1f85f02c76cf.png", "wrapped_token_id": "0x471ece3750da237f93b8e339c536989b8978a438", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "movr", "community_id": 1285, "name": "Moonriver", "native_token_id": "movr", "logo_url": "https://static.debank.com/image/chain/logo_url/movr/4b0de5a711b437f187c0d0f15cc0398b.png", "wrapped_token_id": "0x98878b06940ae243284ca214f92bb71a2b032b8a", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "cro", "community_id": 25, "name": "Cronos", "native_token_id": "cro", "logo_url": "https://static.debank.com/image/chain/logo_url/cro/f947000cc879ee8ffa032793808c741c.png", "wrapped_token_id": "0x5c7f8a570d578ed84e63fdfa7b1ee72deae1ae23", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "boba", "community_id": 288, "name": "Boba", "native_token_id": "boba", "logo_url": "https://static.debank.com/image/chain/logo_url/boba/e43d79cd8088ceb3ea3e4a240a75728f.png", "wrapped_token_id": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "metis", "community_id": 1088, "name": "Metis", "native_token_id": "metis", "logo_url": "https://static.debank.com/image/chain/logo_url/metis/7485c0a61c1e05fdf707113b6b6ac917.png", "wrapped_token_id": "0x75cb093e4d61d2a2e65d8e0bbb01de8d89b53481", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "btt", "community_id": 199, "name": "BitTorrent", "native_token_id": "btt", "logo_url": "https://static.debank.com/image/chain/logo_url/btt/2130a8d57ff2a0f3d50a4ec9432897c6.png", "wrapped_token_id": "0x197a4ed2b1bb607e47a144b9731d7d34f86e9686", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "aurora", "community_id": 1313161554, "name": "Aurora", "native_token_id": "aurora", "logo_url": "https://static.debank.com/image/chain/logo_url/aurora/da491099bb44690eda122cdd67c5c610.png", "wrapped_token_id": "0xc9bdeed33cd01541e1eed10f90519d2c06fe3feb", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "mobm", "community_id": 1284, "name": "Moonbeam", "native_token_id": "mobm", "logo_url": "https://static.debank.com/image/chain/logo_url/mobm/a8442077d76b258297181c3e6eb8c9cc.png", "wrapped_token_id": "0xacc15dc74880c9944775448304b263d191c6077f", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "sbch", "community_id": 10000, "name": "SmartBch", "native_token_id": "sbch", "logo_url": "https://static.debank.com/image/chain/logo_url/sbch/d78ac780803e7f0a17b73558f423502e.png", "wrapped_token_id": "0x3743ec0673453e5009310c727ba4eaf7b3a1cc04", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "fuse", "community_id": 122, "name": "Fuse", "native_token_id": "fuse", "logo_url": "https://static.debank.com/image/chain/logo_url/fuse/36dfb6fe8e9770367976dd4d2286a9ef.png", "wrapped_token_id": "0x0be9e53fd7edac9f859882afdda116645287c629", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "hmy", "community_id": 1666600000, "name": "Harmony", "native_token_id": "hmy", "logo_url": "https://static.debank.com/image/chain/logo_url/hmy/b3bfb4681f81a85e25c28e150dcbfe51.png", "wrapped_token_id": "0xcf664087a5bb0237a0bad6742852ec6c8d69a27a", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "klay", "community_id": 8217, "name": "Klaytn", "native_token_id": "klay", "logo_url": "https://static.debank.com/image/chain/logo_url/klay/1df018b8493cb97c50b7e390ef63cba4.png", "wrapped_token_id": "0xe4f05a66ec68b54a58b17c22107b02e0232cc817", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "astar", "community_id": 592, "name": "Astar", "native_token_id": "astar", "logo_url": "https://static.debank.com/image/chain/logo_url/astar/398c7e0014bdada3d818367a7273fabe.png", "wrapped_token_id": "0xaeaaf0e2c81af264101b9129c00f4440ccf0f720", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "iotx", "community_id": 4689, "name": "IoTeX", "native_token_id": "iotx", "logo_url": "https://static.debank.com/image/chain/logo_url/iotx/d3be2cd8677f86bd9ab7d5f3701afcc9.png", "wrapped_token_id": "0xa00744882684c3e4747faefd68d283ea44099d03", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "rsk", "community_id": 30, "name": "RSK", "native_token_id": "rsk", "logo_url": "https://static.debank.com/image/chain/logo_url/rsk/ff47def89fba98394168bf5f39920c8c.png", "wrapped_token_id": "0x542fda317318ebf1d3deaf76e0b632741a7e677d", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "wan", "community_id": 888, "name": "Wanchain", "native_token_id": "wan", "logo_url": "https://static.debank.com/image/chain/logo_url/wan/f3aa8b31414732ea5e026e05665146e6.png", "wrapped_token_id": "0xdabd997ae5e4799be47d6e69d9431615cba28f48", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "kcc", "community_id": 321, "name": "KCC", "native_token_id": "kcc", "logo_url": "https://static.debank.com/image/chain/logo_url/kcc/3a5a4ef7d5f1db1e53880d70219d75b6.png", "wrapped_token_id": "0x4446fc4eb47f2f6586f9faab68b3498f86c07521", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "sgb", "community_id": 19, "name": "Songbird", "native_token_id": "sgb", "logo_url": "https://static.debank.com/image/chain/logo_url/sgb/619f46d574d62a50bdfd9f0e2f47ddc1.png", "wrapped_token_id": "0x02f0826ef6ad107cfc861152b32b52fd11bab9ed", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "evmos", "community_id": 9001, "name": "EvmOS", "native_token_id": "evmos", "logo_url": "https://static.debank.com/image/chain/logo_url/evmos/26e038b4d5475d5a4b92f7fc08bdabc9.png", "wrapped_token_id": "0xd4949664cd82660aae99bedc034a0dea8a0bd517", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "dfk", "community_id": 53935, "name": "DFK", "native_token_id": "dfk", "logo_url": "https://static.debank.com/image/chain/logo_url/dfk/233867c089c5b71be150aa56003f3f7a.png", "wrapped_token_id": "0xccb93dabd71c8dad03fc4ce5559dc3d89f67a260", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "tlos", "community_id": 40, "name": "Telos", "native_token_id": "tlos", "logo_url": "https://static.debank.com/image/chain/logo_url/telos/f9f7493def4c08ed222540bebd8ce87a.png", "wrapped_token_id": "0xd102ce6a4db07d247fcc28f366a623df0938ca9e", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "nova", "community_id": 42170, "name": "Arbitrum Nova", "native_token_id": "nova", "logo_url": "https://static.debank.com/image/chain/logo_url/nova/06eb2b7add8ba443d5b219c04089c326.png", "wrapped_token_id": "0x722e8bdd2ce80a4422e880164f2079488e115365", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "canto", "community_id": 7700, "name": "Canto", "native_token_id": "canto", "logo_url": "https://static.debank.com/image/chain/logo_url/canto/47574ef619e057d2c6bbce1caba57fb6.png", "wrapped_token_id": "0x826551890dc65655a0aceca109ab11abdbd7a07b", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "doge", "community_id": 2000, "name": "Dogechain", "native_token_id": "doge", "logo_url": "https://static.debank.com/image/chain/logo_url/doge/2538141079688a7a43bc22c7b60fb45f.png", "wrapped_token_id": "0xb7ddc6414bf4f5515b52d8bdd69973ae205ff101", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "kava", "community_id": 2222, "name": "Kava", "native_token_id": "kava", "logo_url": "https://static.debank.com/image/chain/logo_url/kava/b26bf85a1a817e409f9a3902e996dc21.png", "wrapped_token_id": "0xc86c7c0efbd6a49b35e8714c5f59d99de09a225b", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "step", "community_id": 1234, "name": "Step", "native_token_id": "step", "logo_url": "https://static.debank.com/image/chain/logo_url/step/db79600b8feafe17845617ca9c606dbe.png", "wrapped_token_id": "0xb58a9d5920af6ac1a9522b0b10f55df16686d1b6", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "mada", "community_id": 2001, "name": "Milkomeda C1", "native_token_id": "mada", "logo_url": "https://static.debank.com/image/chain/logo_url/mada/cdc4b1112c2c5a2757cbda33f4476b7f.png", "wrapped_token_id": "0xae83571000af4499798d1e3b0fa0070eb3a3e3f9", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "cfx", "community_id": 1030, "name": "Conflux", "native_token_id": "cfx", "logo_url": "https://static.debank.com/image/chain/logo_url/cfx/eab0c7304c6820b48b2a8d0930459b82.png", "wrapped_token_id": "0x14b2d3bc65e74dae1030eafd8ac30c533c976a9b", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "brise", "community_id": 32520, "name": "Bitgert", "native_token_id": "brise", "logo_url": "https://static.debank.com/image/chain/logo_url/brise/4f6c040cf49f4d8c4eabbad7cd2f4ae4.png", "wrapped_token_id": "0x0eb9036cbe0f052386f36170c6b07ef0a0e3f710", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "ckb", "community_id": 71402, "name": "Godwoken", "native_token_id": "ckb", "logo_url": "https://static.debank.com/image/chain/logo_url/ckb/e821893503104870d5e73f56dbd73746.png", "wrapped_token_id": "0xc296f806d15e97243a08334256c705ba5c5754cd", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "tomb", "community_id": 6969, "name": "TOMB Chain", "native_token_id": "tomb", "logo_url": "https://static.debank.com/image/chain/logo_url/tomb/eee88f95c46faa10762514b44655a6a1.png", "wrapped_token_id": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "era", "community_id": 324, "name": "zkSync Era", "native_token_id": "era", "logo_url": "https://static.debank.com/image/chain/logo_url/era/2cfcd0c8436b05d811b03935f6c1d7da.png", "wrapped_token_id": "0x5aea5775959fbc2557cc8789bc1bf90a239d9a91", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "ron", "community_id": 2020, "name": "Ronin", "native_token_id": "ron", "logo_url": "https://static.debank.com/image/chain/logo_url/ron/6e0f509804bc83bf042ef4d674c1c5ee.png", "wrapped_token_id": "0xe514d9deb7966c8be0ca922de8a064264ea6bcd4", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "pze", "community_id": 1101, "name": "Polygon zkEVM", "native_token_id": "pze", "logo_url": "https://static.debank.com/image/chain/logo_url/pze/a2276dce2d6a200c6148fb975f0eadd3.png", "wrapped_token_id": "0x4f9a0e7fd2bf6067db6994cf12e4495df938e6e9", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "eos", "community_id": 17777, "name": "EOS EVM", "native_token_id": "eos", "logo_url": "https://static.debank.com/image/chain/logo_url/eos/7e3122a9ce6f9d522e6d5519d43b6a72.png", "wrapped_token_id": "0xc00592aa41d32d137dc480d9f6d0df19b860104f", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "core", "community_id": 1116, "name": "CORE", "native_token_id": "core", "logo_url": "https://static.debank.com/image/chain/logo_url/core/ccc02f660e5dd410b23ca3250ae7c060.png", "wrapped_token_id": "0x40375c92d9faf44d2f9db9bd9ba41a3317a2404f", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "wemix", "community_id": 1111, "name": "WEMIX", "native_token_id": "wemix", "logo_url": "https://static.debank.com/image/chain/logo_url/wemix/d1ba88d1df6cca0b0cb359c36a09c054.png", "wrapped_token_id": "0x7d72b22a74a216af4a002a1095c8c707d6ec1c5f", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "etc", "community_id": 61, "name": "Ethereum Classic", "native_token_id": "etc", "logo_url": "https://static.debank.com/image/chain/logo_url/etc/7ccf90ee6822ab440fb603337da256fa.png", "wrapped_token_id": "0x82a618305706b14e7bcf2592d4b9324a366b6dad", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "pls", "community_id": 369, "name": "Pulse", "native_token_id": "pls", "logo_url": "https://static.debank.com/image/chain/logo_url/pls/aa6be079fa9eb568e02150734ebb3db0.png", "wrapped_token_id": "0xa1077a294dde1b09bb078844df40758a5d0f9a27", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "flr", "community_id": 14, "name": "Flare", "native_token_id": "flr", "logo_url": "https://static.debank.com/image/chain/logo_url/flr/9ee03d5d7036ad9024e81d55596bb4dc.png", "wrapped_token_id": "0x1d80c49bbbcd1c0911346656b529df9e5c2f783d", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "fsn", "community_id": 32659, "name": "Fusion", "native_token_id": "fsn", "logo_url": "https://static.debank.com/image/chain/logo_url/fsn/047789979f0b5733602b29517753bdf3.png", "wrapped_token_id": "0x0c05c5710af74d36b4d3bd5460475c20ceca8fe3", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "mtr", "community_id": 82, "name": "Meter", "native_token_id": "mtr", "logo_url": "https://static.debank.com/image/chain/logo_url/mtr/2dc6f079f52ca22778eb684e1ce650b3.png", "wrapped_token_id": "0x160361ce13ec33c993b5cca8f62b6864943eb083", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "rose", "community_id": 42262, "name": "Oasis Emerald", "native_token_id": "rose", "logo_url": "https://static.debank.com/image/chain/logo_url/rose/33ade55b0f3efa10e9eec002c6417257.png", "wrapped_token_id": "0x21c718c22d52d0f3a789b752d4c2fd5908a8a733", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "oas", "community_id": 248, "name": "Oasys", "native_token_id": "oas", "logo_url": "https://static.debank.com/image/chain/logo_url/oas/69e424154c30984ff4d5ba916591ac2a.png", "wrapped_token_id": "0x5200000000000000000000000000000000000001", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "zora", "community_id": 7777777, "name": "Zora", "native_token_id": "zora", "logo_url": "https://static.debank.com/image/chain/logo_url/zora/de39f62c4489a2359d5e1198a8e02ef1.png", "wrapped_token_id": "0x4200000000000000000000000000000000000006", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "base", "community_id": 8453, "name": "Base", "native_token_id": "base", "logo_url": "https://static.debank.com/image/chain/logo_url/base/ccc1513e4f390542c4fb2f4b88ce9579.png", "wrapped_token_id": "0x4200000000000000000000000000000000000006", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "linea", "community_id": 59144, "name": "Linea", "native_token_id": "linea", "logo_url": "https://static.debank.com/image/chain/logo_url/linea/32d4ff2cf92c766ace975559c232179c.png", "wrapped_token_id": "0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f", "is_support_history": true, "born_at": null, "usd_value": 0}, {"id": "mnt", "community_id": 5000, "name": "Mantle", "native_token_id": "mnt", "logo_url": "https://static.debank.com/image/chain/logo_url/mnt/0af11a52431d60ded59655c7ca7e1475.png", "wrapped_token_id": "0x78c1b0c915c4faa5fffa6cabf0219da63d7f4cb8", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "tenet", "community_id": 1559, "name": "Tenet", "native_token_id": "tenet", "logo_url": "https://static.debank.com/image/chain/logo_url/tenet/803be22e467ee9a5abe00d69a9c3ea4f.png", "wrapped_token_id": "0xd6cb8a253e12893b0cf39ca78f7d858652cca1fe", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "lyx", "community_id": 42, "name": "LUKSO", "native_token_id": "lyx", "logo_url": "https://static.debank.com/image/chain/logo_url/lyx/dbe6eef57e66817e61297d9b188248ed.png", "wrapped_token_id": "", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "manta", "community_id": 169, "name": "Manta Pacific", "native_token_id": "manta", "logo_url": "https://static.debank.com/image/chain/logo_url/manta/0e25a60b96a29d6a5b9e524be7565845.png", "wrapped_token_id": "0x0dc808adce2099a9f62aa87d9670745aba741746", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "scrl", "community_id": 534352, "name": "Scroll", "native_token_id": "scrl", "logo_url": "https://static.debank.com/image/chain/logo_url/scrl/1fa5c7e0bfd353ed0a97c1476c9c42d2.png", "wrapped_token_id": "0x5300000000000000000000000000000000000004", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "opbnb", "community_id": 204, "name": "opBNB", "native_token_id": "opbnb", "logo_url": "https://static.debank.com/image/chain/logo_url/opbnb/07e2e686e363a842d0982493638e1285.png", "wrapped_token_id": "0x4200000000000000000000000000000000000006", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "loot", "community_id": 5151706, "name": "Loot", "native_token_id": "loot", "logo_url": "https://static.debank.com/image/chain/logo_url/loot/0f098333a1a4f474115b05862e680573.png", "wrapped_token_id": "0x4fa214c9e33d481996bec77c443245fbaee85670", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "shib", "community_id": 109, "name": "Shibarium", "native_token_id": "shib", "logo_url": "https://static.debank.com/image/chain/logo_url/shib/4ec79ed9ee4988dfdfc41e1634a447be.png", "wrapped_token_id": "0x213c25900f365f1be338df478cd82bef7fd43f85", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "pgn", "community_id": 424, "name": "PGN", "native_token_id": "pgn", "logo_url": "https://static.debank.com/image/chain/logo_url/pgn/55e8dbdfeb4ca88443e04206da3fcb7f.png", "wrapped_token_id": "", "is_support_history": false, "born_at": null, "usd_value": 0}, {"id": "fx", "community_id": 530, "name": "Function X", "native_token_id": "fx", "logo_url": "https://static.debank.com/image/chain/logo_url/fx/6fee82420b2394e0b68d7d7e692a0a01.png", "wrapped_token_id": "0x80b5a32e4f032b2a058b4f29ec95eefeeb87adcd", "is_support_history": false, "born_at": null, "usd_value": 0}]} | {"type": "object", "properties": {"total_usd_value": {"type": "number"}, "chain_list": {"type": "array", "items": {"id": "string", "community_id": "number", "name": "string", "native_token_id": "string", "logo_url": "string", "wrapped_token_id": "string", "is_support_history": "boolean", "born_at": "number", "usd_value": "number"}}}} |
a7b51f35-e22b-4613-a157-cbede7db8b4c/8acb6e77-d424-450e-b65c-d9027a6d190b/0/0 | Currency Converter | Provides currency exchange rates based on the markets and national central banks data. | 0.2 | Symbols | Available currencies codes | 200 | New Example | ["pen", "sll", "hnl", "nad", "luna", "lyd", "xaf", "jod", "pkr", "syp", "mur", "waves", "vnd", "stx", "celo", "rune", "zmk", "eur", "ar", "nexo", "bnb", "lbp", "neo", "dzd", "cvx", "wemix", "ern", "btcb", "try", "lkr", "awg", "kzt", "qtum", "npr", "zmw", "brl", "hkd", "ars", "bch", "ang", "1inch", "usdp", "xem", "twd", "bsv", "isk", "ils", "busd", "gtq", "rsd", "kpw", "bdt", "aed", "byn", "gmd", "mxn", "gyd", "doge", "uah", "krw", "xdc", "ada", "ngn", "imp", "kmf", "atom", "kda", "sgd", "mop", "uzs", "gip", "amp", "fil", "jpy", "xdr", "etc", "irr", "hrk", "xrp", "zar", "inr", "inj", "crv", "lrc", "sdg", "sar", "mkr", "trx", "htg", "khr", "hbar", "clp", "svc", "pgk", "okb", "xtz", "shp", "klay", "aave", "tzs", "djf", "tmt", "pln", "chz", "crc", "bhd", "knc", "fkp", "bbd", "bwp", "xag", "tusd", "jmd", "eos", "gno", "kgs", "bgn", "flow", "azn", "ttt", "axs", "cad", "clf", "ggp", "amd", "mzm", "etb", "bsd", "link", "enj", "qar", "dash", "uni", "wbtc", "wst", "sol", "vuv", "ftt", "cdf", "zwl", "dai", "mvr", "bmd", "iqd", "kava", "kes", "btg", "mkd", "aoa", "xmr", "tnd", "ht", "paxg", "xec", "usdc", "szl", "pyg", "xpf", "nzd", "sand", "cake", "ltc", "php", "bob", "ltl", "vet", "sos", "bam", "mru", "mro", "thb", "aud", "egp", "mnt", "kcs", "mana", "mad", "gqe", "xau", "ghs", "top", "ugx", "dot", "ttd", "sek", "fei", "tjs", "fjd", "all", "sbd", "kwd", "vef", "std", "mdl", "jep", "nok", "xlm", "dfi", "avax", "bzd", "ksm", "gel", "near", "bif", "btc", "lvl", "zil", "scr", "cny", "dkk", "gnf", "dop", "mmk", "ftm", "pab", "bat", "lak", "cup", "miota", "mwk", "grt", "mina", "myr", "cve", "nio", "cop", "idr", "cuc", "omr", "zec", "xcd", "qnt", "mga", "comp", "btn", "gala", "egld", "afn", "yer", "lsl", "frax", "lrd", "ron", "shib", "gt", "icp", "eth", "byr", "leo", "dcr", "algo", "kyd", "rub", "chf", "one", "matic", "srd", "rwf", "theta", "xof", "bnd", "usd", "czk", "cro", "mzn", "cnh", "usdt", "huf", "gbp", "uyu", "hot", "hnt"] | {"type": "array", "items": {"type": "string"}} |
a7b51f35-e22b-4613-a157-cbede7db8b4c/aca27da5-b268-41fa-98b2-29759276d6d1/0/0 | Currency Converter | Provides currency exchange rates based on the markets and national central banks data. | 0.2 | Historical Currency Data | Returns the rates on the specific date | 200 | New Example | {"status": true, "rates": {"aed": 3.673202, "afn": 78.40293, "all": 109.15357, "amd": 481.45562, "ang": 1.693657, "aoa": 482.226979, "ars": 59.929937, "aud": 1.42469, "awg": 1.8, "azn": 1.68931, "bam": 1.750889, "bbd": 2.029453, "bdt": 85.33082, "bgn": 1.743913, "bhd": 0.378497, "bif": 1888.8769, "bmd": 1, "bnd": 1.352222, "bob": 6.940423, "brl": 4.019699, "bsd": 1.005148, "btc": 0.000139, "btn": 71.75148, "bwp": 10.636498, "byn": 2.120406, "byr": 19600, "bzd": 2.026051, "cad": 1.29755, "cdf": 1684.999639, "chf": 0.9677, "clf": 0.02684, "clp": 740.599459, "cny": 6.9632, "cop": 3281.51, "crc": 573.94029, "cuc": 1, "cup": 26.5, "cve": 98.71089, "czk": 22.658199, "djf": 177.720256, "dkk": 6.659302, "dop": 53.151605, "dzd": 119.54075, "egp": 16.040297, "ern": 14.999694, "etb": 32.083881, "eur": 0.891401, "fjd": 2.144598, "fkp": 0.81288, "gbp": 0.754802, "gel": 2.860224, "ggp": 0.754639, "ghs": 5.638781, "gip": 0.81288, "gmd": 51.249666, "gnf": 9599.033029, "gtq": 7.744595, "gyd": 210.28602, "hkd": 7.79275, "hnl": 24.747325, "hrk": 6.665234, "htg": 95.54451, "huf": 294.999813, "idr": 13892.594, "ils": 3.45395, "imp": 0.754639, "inr": 71.1315, "iqd": 1199.9373, "irr": 42105.000107, "isk": 121.049736, "jep": 0.754639, "jmd": 133.21516, "jod": 0.708992, "jpy": 108.71802, "kes": 101.740259, "kgs": 69.511698, "khr": 4095.8775, "kmf": 438.850031, "kpw": 900.051542, "krw": 1154.970176, "kwd": 0.303198, "kyd": 0.837653, "kzt": 384.88876, "lak": 8930.575991, "lbp": 1519.9857, "lkr": 182.30616, "lrd": 187.599792, "lsl": 14.009946, "ltl": 2.95274, "lvl": 0.60489, "lyd": 1.406204, "mad": 9.614252, "mdl": 17.288304, "mga": 3709.950302, "mkd": 55.046775, "mmk": 1483.577903, "mnt": 2738.696319, "mop": 8.061412, "mro": 356.999834, "mur": 36.490055, "mvr": 15.449677, "mwk": 740.180802, "mxn": 18.913803, "myr": 4.0905, "mzn": 61.455023, "nad": 14.009783, "ngn": 362.501068, "nio": 33.908061, "nok": 8.77443, "npr": 114.80238, "nzd": 1.48453, "omr": 0.386482, "pab": 1.005148, "pen": 3.333512, "pgk": 3.42751, "php": 50.70981, "pkr": 155.66008, "pln": 3.79325, "pyg": 6486.280799, "qar": 3.640992, "ron": 4.270098, "rsd": 104.849732, "rub": 61.865021, "rwf": 952.9475, "sar": 3.75137, "sbd": 8.303902, "scr": 13.753189, "sdg": 45.11595, "sek": 9.345135, "sgd": 1.345301, "shp": 1.320897, "sll": 9749.999781, "sos": 581.000246, "srd": 7.457969, "std": 21560.79, "svc": 8.795488, "syp": 514.99958, "szl": 14.112618, "thb": 30.069874, "tjs": 9.73797, "tmt": 3.5, "tnd": 2.774982, "top": 2.28525, "try": 5.947297, "ttd": 6.796383, "twd": 29.847498, "tzs": 2297.69862, "uah": 23.821673, "ugx": 3683.810151, "usd": 1, "uyu": 37.340316, "uzs": 9556.375967, "vef": 9.987499, "vnd": 23172.5, "vuv": 115.388508, "wst": 2.633996, "xaf": 587.222602, "xag": 0.055922, "xau": 0.000658, "xcd": 2.70255, "xdr": 0.7217, "xof": 587.222601, "xpf": 106.76335, "yer": 250.349976, "zar": 14.00932, "zmk": 9001.210149, "zmw": 14.147263, "zwl": 322.000001}, "base": "usd", "value": 1, "date": "2020-01-01"} | {"type": "object", "properties": {"status": {"type": "boolean"}, "rates": {"type": "object", "properties": {"aed": {"type": "number"}, "afn": {"type": "number"}, "all": {"type": "number"}, "amd": {"type": "number"}, "ang": {"type": "number"}, "aoa": {"type": "number"}, "ars": {"type": "number"}, "aud": {"type": "number"}, "awg": {"type": "number"}, "azn": {"type": "number"}, "bam": {"type": "number"}, "bbd": {"type": "number"}, "bdt": {"type": "number"}, "bgn": {"type": "number"}, "bhd": {"type": "number"}, "bif": {"type": "number"}, "bmd": {"type": "integer"}, "bnd": {"type": "number"}, "bob": {"type": "number"}, "brl": {"type": "number"}, "bsd": {"type": "number"}, "btc": {"type": "number"}, "btn": {"type": "number"}, "bwp": {"type": "number"}, "byn": {"type": "number"}, "byr": {"type": "integer"}, "bzd": {"type": "number"}, "cad": {"type": "number"}, "cdf": {"type": "number"}, "chf": {"type": "number"}, "clf": {"type": "number"}, "clp": {"type": "number"}, "cny": {"type": "number"}, "cop": {"type": "number"}, "crc": {"type": "number"}, "cuc": {"type": "integer"}, "cup": {"type": "number"}, "cve": {"type": "number"}, "czk": {"type": "number"}, "djf": {"type": "number"}, "dkk": {"type": "number"}, "dop": {"type": "number"}, "dzd": {"type": "number"}, "egp": {"type": "number"}, "ern": {"type": "number"}, "etb": {"type": "number"}, "eur": {"type": "number"}, "fjd": {"type": "number"}, "fkp": {"type": "number"}, "gbp": {"type": "number"}, "gel": {"type": "number"}, "ggp": {"type": "number"}, "ghs": {"type": "number"}, "gip": {"type": "number"}, "gmd": {"type": "number"}, "gnf": {"type": "number"}, "gtq": {"type": "number"}, "gyd": {"type": "number"}, "hkd": {"type": "number"}, "hnl": {"type": "number"}, "hrk": {"type": "number"}, "htg": {"type": "number"}, "huf": {"type": "number"}, "idr": {"type": "number"}, "ils": {"type": "number"}, "imp": {"type": "number"}, "inr": {"type": "number"}, "iqd": {"type": "number"}, "irr": {"type": "number"}, "isk": {"type": "number"}, "jep": {"type": "number"}, "jmd": {"type": "number"}, "jod": {"type": "number"}, "jpy": {"type": "number"}, "kes": {"type": "number"}, "kgs": {"type": "number"}, "khr": {"type": "number"}, "kmf": {"type": "number"}, "kpw": {"type": "number"}, "krw": {"type": "number"}, "kwd": {"type": "number"}, "kyd": {"type": "number"}, "kzt": {"type": "number"}, "lak": {"type": "number"}, "lbp": {"type": "number"}, "lkr": {"type": "number"}, "lrd": {"type": "number"}, "lsl": {"type": "number"}, "ltl": {"type": "number"}, "lvl": {"type": "number"}, "lyd": {"type": "number"}, "mad": {"type": "number"}, "mdl": {"type": "number"}, "mga": {"type": "number"}, "mkd": {"type": "number"}, "mmk": {"type": "number"}, "mnt": {"type": "number"}, "mop": {"type": "number"}, "mro": {"type": "number"}, "mur": {"type": "number"}, "mvr": {"type": "number"}, "mwk": {"type": "number"}, "mxn": {"type": "number"}, "myr": {"type": "number"}, "mzn": {"type": "number"}, "nad": {"type": "number"}, "ngn": {"type": "number"}, "nio": {"type": "number"}, "nok": {"type": "number"}, "npr": {"type": "number"}, "nzd": {"type": "number"}, "omr": {"type": "number"}, "pab": {"type": "number"}, "pen": {"type": "number"}, "pgk": {"type": "number"}, "php": {"type": "number"}, "pkr": {"type": "number"}, "pln": {"type": "number"}, "pyg": {"type": "number"}, "qar": {"type": "number"}, "ron": {"type": "number"}, "rsd": {"type": "number"}, "rub": {"type": "number"}, "rwf": {"type": "number"}, "sar": {"type": "number"}, "sbd": {"type": "number"}, "scr": {"type": "number"}, "sdg": {"type": "number"}, "sek": {"type": "number"}, "sgd": {"type": "number"}, "shp": {"type": "number"}, "sll": {"type": "number"}, "sos": {"type": "number"}, "srd": {"type": "number"}, "std": {"type": "number"}, "svc": {"type": "number"}, "syp": {"type": "number"}, "szl": {"type": "number"}, "thb": {"type": "number"}, "tjs": {"type": "number"}, "tmt": {"type": "number"}, "tnd": {"type": "number"}, "top": {"type": "number"}, "try": {"type": "number"}, "ttd": {"type": "number"}, "twd": {"type": "number"}, "tzs": {"type": "number"}, "uah": {"type": "number"}, "ugx": {"type": "number"}, "usd": {"type": "integer"}, "uyu": {"type": "number"}, "uzs": {"type": "number"}, "vef": {"type": "number"}, "vnd": {"type": "number"}, "vuv": {"type": "number"}, "wst": {"type": "number"}, "xaf": {"type": "number"}, "xag": {"type": "number"}, "xau": {"type": "number"}, "xcd": {"type": "number"}, "xdr": {"type": "number"}, "xof": {"type": "number"}, "xpf": {"type": "number"}, "yer": {"type": "number"}, "zar": {"type": "number"}, "zmk": {"type": "number"}, "zmw": {"type": "number"}, "zwl": {"type": "number"}}}, "base": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "string"}}} |
a7b51f35-e22b-4613-a157-cbede7db8b4c/3a3e49cf-005a-4ad0-9b8f-cd5186b62d5d/0/0 | Currency Converter | Provides currency exchange rates based on the markets and national central banks data. | 0.2 | Latest Currencies | This endpoint returns the latest exchange rates for the base currency code you have supplied. | 200 | Response | {"status": true, "rates": {"1inch": 1.128748, "aave": 0.009018, "ada": 1.720941, "aed": 3.673014, "afn": 89.000331, "algo": 2.699235, "all": 114.203942, "amd": 405.910235, "amp": 119.96003, "ang": 1.801895, "aoa": 429.294865, "ar": 0.068292, "ars": 134.544664, "atom": 0.083913, "aud": 1.403179, "avax": 0.034449, "awg": 1.799999, "axs": 0.051523, "azn": 1.703969, "bam": 1.900063, "bat": 2.171243, "bbd": 2.018749, "bch": 0.006948, "bdt": 94.992431, "bgn": 1.906565, "bhd": 0.376871, "bif": 2046.999156, "bmd": 1, "bnb": 0.003066, "bnd": 1.371045, "bob": 6.903705, "brl": 5.076402, "bsd": 0.999854, "bsv": 0.015821, "btc": 4.1e-05, "btcb": 4.1e-05, "btg": 0.031847, "btn": 79.589907, "busd": 0.999838, "bwp": 12.435512, "byn": 2.523145, "byr": 19599.991917, "bzd": 2.015349, "cad": 1.27765, "cake": 0.225662, "cdf": 2000.999536, "celo": 0.869731, "chf": 0.941589, "chz": 5.966608, "clf": 0.031739, "clp": 875.760035, "cny": 6.742901, "comp": 0.015327, "cop": 4167.338282, "crc": 668.917002, "cro": 6.477656, "crv": 0.687117, "cuc": 1, "cup": 26.499989, "cve": 107.874996, "cvx": 0.138249, "czk": 23.731195, "dai": 1.00073, "dash": 0.017347, "dcr": 0.027928, "dfi": 32.995049, "djf": 177.72032, "dkk": 7.247307, "doge": 13.638496, "dop": 54.050371, "dot": 0.107266, "dzd": 142.855981, "egld": 0.015315, "egp": 19.143652, "enj": 1.389448, "eos": 0.736495, "ern": 14.999994, "etb": 52.23037, "etc": 0.022972, "eth": 0.000503, "eur": 0.974325, "fei": 1.009792, "fil": 0.119055, "fjd": 2.117249, "fkp": 0.823604, "flow": 0.345767, "frax": 1.001282, "ftm": 2.509028, "ftt": 0.031797, "gala": 14.83594, "gbp": 0.823604, "gel": 2.720389, "ggp": 0.823604, "ghs": 9.025036, "gip": 0.823604, "gmd": 54.150368, "gnf": 8799.996726, "gno": 0.005236, "grt": 6.939544, "gt": 0.197319, "gtq": 7.738569, "gyd": 209.178432, "hbar": 12.273068, "hkd": 7.837501, "hnl": 24.570378, "hnt": 0.115963, "hot": 0.285677, "hrk": 7.322201, "ht": 0.187375, "htg": 127.976826, "huf": 381.964882, "icp": 0.121504, "idr": 14661.493953, "ils": 3.239449, "imp": 0.823604, "inj": 0.527317, "inr": 79.630354, "iqd": 1459.999398, "irr": 42349.982887, "isk": 136.750329, "jep": 0.823604, "jmd": 151.796702, "jod": 0.709039, "jpy": 133.436449, "kava": 0.440773, "kcs": 0.09328, "kda": 0.459881, "kes": 119.450336, "kgs": 82.00427, "khr": 4111.998654, "klay": 3.270881, "kmf": 479.874841, "knc": 0.587944, "kpw": 899.999979, "krw": 1302.379846, "ksm": 0.016333, "kwd": 0.306704, "kyd": 0.833147, "kzt": 477.165005, "lak": 15229.994068, "lbp": 1510.212804, "leo": 0.204681, "link": 0.10939, "lkr": 359.930099, "lrc": 2.044516, "lrd": 153.503711, "lsl": 16.190375, "ltc": 0.015538, "ltl": 2.952739, "luna": 0.498639, "lvl": 0.60489, "lyd": 4.865038, "mad": 10.333746, "mana": 0.929555, "matic": 0.97893, "mdl": 19.221443, "mga": 4099.998656, "mina": 1.090014, "miota": 2.768244, "mkd": 59.770704, "mkr": 0.000932, "mmk": 2099.591308, "mnt": 3194.960246, "mop": 8.07142, "mro": 356.99968, "mur": 45.481764, "mvr": 15.350372, "mwk": 1019.999924, "mxn": 19.828252, "myr": 4.444502, "mzn": 63.830352, "nad": 16.19037, "near": 0.170733, "neo": 0.083192, "nexo": 0.953368, "ngn": 419.220204, "nio": 36.240362, "nok": 9.569736, "npr": 127.344123, "nzd": 1.549294, "okb": 0.045148, "omr": 0.384832, "one": 1506.424283, "pab": 0.999756, "paxg": 0.000557, "pen": 3.867503, "pgk": 3.525037, "php": 55.725015, "pkr": 218.503614, "pln": 4.536459, "pyg": 6883.886179, "qar": 3.641037, "qnt": 0.00786, "qtum": 0.231554, "ron": 4.760902, "rsd": 114.410326, "rub": 62.250348, "rune": 0.342444, "rwf": 1027.999576, "sand": 0.746149, "sar": 3.755134, "sbd": 8.24416, "scr": 14.333381, "sdg": 569.503443, "sek": 10.204937, "sgd": 1.37107, "shib": 78764.939895, "shp": 1.377404, "sll": 13934.994592, "sol": 0.021492, "sos": 570.000103, "srd": 24.280361, "std": 20697.972472, "stx": 322.547234, "svc": 8.748235, "syp": 2512.529334, "szl": 16.190364, "thb": 35.323024, "theta": 0.626609, "tjs": 10.203134, "tmt": 3.509999, "tnd": 3.135037, "top": 2.317849, "trx": 14.290488, "try": 17.936297, "ttd": 6.786804, "ttt": 18.840805, "tusd": 1.0001, "twd": 29.956492, "tzs": 2331.999374, "uah": 36.924646, "ugx": 3769.270317, "uni": 10209.611175, "usd": 1, "usdc": 1.000162, "usdp": 0.999392, "usdt": 0.999644, "uyu": 40.096743, "uzs": 10924.995829, "vet": 30.256065, "vnd": 23396.990351, "vuv": 116.056031, "waves": 0.163486, "wbtc": 4.1e-05, "wemix": 0.365309, "wst": 2.667459, "xaf": 637.247153, "xag": 0.04802, "xau": 0.000554, "xcd": 2.702549, "xdc": 27.938787, "xdr": 0.752992, "xec": 21005.319707, "xem": 18.187722, "xlm": 7.886995, "xmr": 0.005982, "xof": 639.503338, "xpf": 116.503551, "xrp": 2.629635, "xtz": 0.521261, "yer": 250.250261, "zar": 16.167643, "zec": 0.01308, "zil": 21.092095, "zmk": 9001.199881, "zmw": 16.107051, "zwl": 321.999459}, "base": "usd", "value": 1} | {"type": "object", "properties": {"status": {"type": "boolean"}, "rates": {"type": "object", "properties": {"1inch": {"type": "number"}, "aave": {"type": "number"}, "ada": {"type": "number"}, "aed": {"type": "number"}, "afn": {"type": "number"}, "algo": {"type": "number"}, "all": {"type": "number"}, "amd": {"type": "number"}, "amp": {"type": "number"}, "ang": {"type": "number"}, "aoa": {"type": "number"}, "ar": {"type": "number"}, "ars": {"type": "number"}, "atom": {"type": "number"}, "aud": {"type": "number"}, "avax": {"type": "number"}, "awg": {"type": "number"}, "axs": {"type": "number"}, "azn": {"type": "number"}, "bam": {"type": "number"}, "bat": {"type": "number"}, "bbd": {"type": "number"}, "bch": {"type": "number"}, "bdt": {"type": "number"}, "bgn": {"type": "number"}, "bhd": {"type": "number"}, "bif": {"type": "number"}, "bmd": {"type": "integer"}, "bnb": {"type": "number"}, "bnd": {"type": "number"}, "bob": {"type": "number"}, "brl": {"type": "number"}, "bsd": {"type": "number"}, "bsv": {"type": "number"}, "btc": {"type": "number"}, "btcb": {"type": "number"}, "btg": {"type": "number"}, "btn": {"type": "number"}, "busd": {"type": "number"}, "bwp": {"type": "number"}, "byn": {"type": "number"}, "byr": {"type": "number"}, "bzd": {"type": "number"}, "cad": {"type": "number"}, "cake": {"type": "number"}, "cdf": {"type": "number"}, "celo": {"type": "number"}, "chf": {"type": "number"}, "chz": {"type": "number"}, "clf": {"type": "number"}, "clp": {"type": "number"}, "cny": {"type": "number"}, "comp": {"type": "number"}, "cop": {"type": "number"}, "crc": {"type": "number"}, "cro": {"type": "number"}, "crv": {"type": "number"}, "cuc": {"type": "integer"}, "cup": {"type": "number"}, "cve": {"type": "number"}, "cvx": {"type": "number"}, "czk": {"type": "number"}, "dai": {"type": "number"}, "dash": {"type": "number"}, "dcr": {"type": "number"}, "dfi": {"type": "number"}, "djf": {"type": "number"}, "dkk": {"type": "number"}, "doge": {"type": "number"}, "dop": {"type": "number"}, "dot": {"type": "number"}, "dzd": {"type": "number"}, "egld": {"type": "number"}, "egp": {"type": "number"}, "enj": {"type": "number"}, "eos": {"type": "number"}, "ern": {"type": "number"}, "etb": {"type": "number"}, "etc": {"type": "number"}, "eth": {"type": "number"}, "eur": {"type": "number"}, "fei": {"type": "number"}, "fil": {"type": "number"}, "fjd": {"type": "number"}, "fkp": {"type": "number"}, "flow": {"type": "number"}, "frax": {"type": "number"}, "ftm": {"type": "number"}, "ftt": {"type": "number"}, "gala": {"type": "number"}, "gbp": {"type": "number"}, "gel": {"type": "number"}, "ggp": {"type": "number"}, "ghs": {"type": "number"}, "gip": {"type": "number"}, "gmd": {"type": "number"}, "gnf": {"type": "number"}, "gno": {"type": "number"}, "grt": {"type": "number"}, "gt": {"type": "number"}, "gtq": {"type": "number"}, "gyd": {"type": "number"}, "hbar": {"type": "number"}, "hkd": {"type": "number"}, "hnl": {"type": "number"}, "hnt": {"type": "number"}, "hot": {"type": "number"}, "hrk": {"type": "number"}, "ht": {"type": "number"}, "htg": {"type": "number"}, "huf": {"type": "number"}, "icp": {"type": "number"}, "idr": {"type": "number"}, "ils": {"type": "number"}, "imp": {"type": "number"}, "inj": {"type": "number"}, "inr": {"type": "number"}, "iqd": {"type": "number"}, "irr": {"type": "number"}, "isk": {"type": "number"}, "jep": {"type": "number"}, "jmd": {"type": "number"}, "jod": {"type": "number"}, "jpy": {"type": "number"}, "kava": {"type": "number"}, "kcs": {"type": "number"}, "kda": {"type": "number"}, "kes": {"type": "number"}, "kgs": {"type": "number"}, "khr": {"type": "number"}, "klay": {"type": "number"}, "kmf": {"type": "number"}, "knc": {"type": "number"}, "kpw": {"type": "number"}, "krw": {"type": "number"}, "ksm": {"type": "number"}, "kwd": {"type": "number"}, "kyd": {"type": "number"}, "kzt": {"type": "number"}, "lak": {"type": "number"}, "lbp": {"type": "number"}, "leo": {"type": "number"}, "link": {"type": "number"}, "lkr": {"type": "number"}, "lrc": {"type": "number"}, "lrd": {"type": "number"}, "lsl": {"type": "number"}, "ltc": {"type": "number"}, "ltl": {"type": "number"}, "luna": {"type": "number"}, "lvl": {"type": "number"}, "lyd": {"type": "number"}, "mad": {"type": "number"}, "mana": {"type": "number"}, "matic": {"type": "number"}, "mdl": {"type": "number"}, "mga": {"type": "number"}, "mina": {"type": "number"}, "miota": {"type": "number"}, "mkd": {"type": "number"}, "mkr": {"type": "number"}, "mmk": {"type": "number"}, "mnt": {"type": "number"}, "mop": {"type": "number"}, "mro": {"type": "number"}, "mur": {"type": "number"}, "mvr": {"type": "number"}, "mwk": {"type": "number"}, "mxn": {"type": "number"}, "myr": {"type": "number"}, "mzn": {"type": "number"}, "nad": {"type": "number"}, "near": {"type": "number"}, "neo": {"type": "number"}, "nexo": {"type": "number"}, "ngn": {"type": "number"}, "nio": {"type": "number"}, "nok": {"type": "number"}, "npr": {"type": "number"}, "nzd": {"type": "number"}, "okb": {"type": "number"}, "omr": {"type": "number"}, "one": {"type": "number"}, "pab": {"type": "number"}, "paxg": {"type": "number"}, "pen": {"type": "number"}, "pgk": {"type": "number"}, "php": {"type": "number"}, "pkr": {"type": "number"}, "pln": {"type": "number"}, "pyg": {"type": "number"}, "qar": {"type": "number"}, "qnt": {"type": "number"}, "qtum": {"type": "number"}, "ron": {"type": "number"}, "rsd": {"type": "number"}, "rub": {"type": "number"}, "rune": {"type": "number"}, "rwf": {"type": "number"}, "sand": {"type": "number"}, "sar": {"type": "number"}, "sbd": {"type": "number"}, "scr": {"type": "number"}, "sdg": {"type": "number"}, "sek": {"type": "number"}, "sgd": {"type": "number"}, "shib": {"type": "number"}, "shp": {"type": "number"}, "sll": {"type": "number"}, "sol": {"type": "number"}, "sos": {"type": "number"}, "srd": {"type": "number"}, "std": {"type": "number"}, "stx": {"type": "number"}, "svc": {"type": "number"}, "syp": {"type": "number"}, "szl": {"type": "number"}, "thb": {"type": "number"}, "theta": {"type": "number"}, "tjs": {"type": "number"}, "tmt": {"type": "number"}, "tnd": {"type": "number"}, "top": {"type": "number"}, "trx": {"type": "number"}, "try": {"type": "number"}, "ttd": {"type": "number"}, "ttt": {"type": "number"}, "tusd": {"type": "number"}, "twd": {"type": "number"}, "tzs": {"type": "number"}, "uah": {"type": "number"}, "ugx": {"type": "number"}, "uni": {"type": "number"}, "usd": {"type": "integer"}, "usdc": {"type": "number"}, "usdp": {"type": "number"}, "usdt": {"type": "number"}, "uyu": {"type": "number"}, "uzs": {"type": "number"}, "vet": {"type": "number"}, "vnd": {"type": "number"}, "vuv": {"type": "number"}, "waves": {"type": "number"}, "wbtc": {"type": "number"}, "wemix": {"type": "number"}, "wst": {"type": "number"}, "xaf": {"type": "number"}, "xag": {"type": "number"}, "xau": {"type": "number"}, "xcd": {"type": "number"}, "xdc": {"type": "number"}, "xdr": {"type": "number"}, "xec": {"type": "number"}, "xem": {"type": "number"}, "xlm": {"type": "number"}, "xmr": {"type": "number"}, "xof": {"type": "number"}, "xpf": {"type": "number"}, "xrp": {"type": "number"}, "xtz": {"type": "number"}, "yer": {"type": "number"}, "zar": {"type": "number"}, "zec": {"type": "number"}, "zil": {"type": "number"}, "zmk": {"type": "number"}, "zmw": {"type": "number"}, "zwl": {"type": "number"}}}, "base": {"type": "string"}, "value": {"type": "integer"}}} |
a7b51f35-e22b-4613-a157-cbede7db8b4c/3f6140ec-f46e-4326-9ce7-505ea727d491/0/0 | Currency Converter | Provides currency exchange rates based on the markets and national central banks data. | 0.2 | Currency Converter | Converts from one currency to another | 200 | New Example | {"status": true, "rates": {"aed": 367.320196, "afn": 7840.292922, "all": 10915.356891, "amd": 48145.561519, "ang": 169.365698, "aoa": 48222.697418, "ars": 5992.99364, "aud": 142.468999, "awg": 179.999998, "azn": 168.930998, "bam": 175.088898, "bbd": 202.945298, "bdt": 8533.081915, "bgn": 174.391298, "bhd": 37.8497, "bif": 188887.688111, "bmd": 99.999999, "bnd": 135.222199, "bob": 694.042293, "brl": 401.969896, "bsd": 100.514799, "btc": 0.0139, "btn": 7175.147928, "bwp": 1063.649789, "byn": 212.040598, "byr": 1959999.9804, "bzd": 202.605098, "cad": 129.754999, "cdf": 168499.962215, "chf": 96.769999, "clf": 2.684, "clp": 74059.945159, "cny": 696.319993, "cop": 328150.996718, "crc": 57394.028426, "cuc": 99.999999, "cup": 2649.999974, "cve": 9871.088901, "czk": 2265.819877, "djf": 17772.025422, "dkk": 665.930193, "dop": 5315.160447, "dzd": 11954.07488, "egp": 1604.029684, "ern": 1499.969385, "etb": 3208.388068, "eur": 89.140099, "fjd": 214.459798, "fkp": 81.287999, "gbp": 75.480199, "gel": 286.022397, "ggp": 75.463899, "ghs": 563.878094, "gip": 81.287999, "gmd": 5124.966549, "gnf": 959903.293301, "gtq": 774.459492, "gyd": 21028.60179, "hkd": 779.274992, "hnl": 2474.732475, "hrk": 666.523393, "htg": 9554.450904, "huf": 29499.981005, "idr": 1389259.386107, "ils": 345.394997, "imp": 75.463899, "inr": 7113.149929, "iqd": 119993.7288, "irr": 4210499.968595, "isk": 12104.973479, "jep": 75.463899, "jmd": 13321.515867, "jod": 70.899199, "jpy": 10871.801891, "kes": 10174.025798, "kgs": 6951.16973, "khr": 409587.745904, "kmf": 43885.002661, "kpw": 90005.1533, "krw": 115497.016445, "kwd": 30.3198, "kyd": 83.765299, "kzt": 38488.875615, "lak": 893057.590169, "lbp": 151998.56848, "lkr": 18230.615818, "lrd": 18759.979012, "lsl": 1400.994586, "ltl": 295.273997, "lvl": 60.488999, "lyd": 140.620399, "mad": 961.42519, "mdl": 1728.830383, "mga": 370995.02649, "mkd": 5504.677445, "mmk": 148357.788816, "mnt": 273869.629161, "mop": 806.141192, "mro": 35699.983043, "mur": 3649.005464, "mvr": 1544.967685, "mwk": 74018.07946, "mxn": 1891.380281, "myr": 409.049996, "mzn": 6145.502239, "nad": 1400.978286, "ngn": 36250.106437, "nio": 3390.806066, "nok": 877.442991, "npr": 11480.237885, "nzd": 148.452999, "omr": 38.6482, "pab": 100.514799, "pen": 333.351197, "pgk": 342.750997, "php": 5070.980949, "pkr": 15566.007844, "pln": 379.324996, "pyg": 648628.073414, "qar": 364.099196, "ron": 427.009796, "rsd": 10484.973095, "rub": 6186.502038, "rwf": 95294.749047, "sar": 375.136996, "sbd": 830.390192, "scr": 1375.318886, "sdg": 4511.594955, "sek": 934.513491, "sgd": 134.530099, "shp": 132.089699, "sll": 974999.96835, "sos": 58100.024019, "srd": 745.796893, "std": 2156078.978439, "svc": 879.548791, "syp": 51499.957485, "szl": 1411.261786, "thb": 3006.98737, "tjs": 973.79699, "tmt": 349.999997, "tnd": 277.498197, "top": 228.524998, "try": 594.729694, "ttd": 679.638293, "twd": 2984.74977, "tzs": 229769.859702, "uah": 2382.167276, "ugx": 368381.011416, "usd": 99.999999, "uyu": 3734.031563, "uzs": 955637.587144, "vef": 998.74989, "vnd": 2317249.976828, "vuv": 11538.850685, "wst": 263.399597, "xaf": 58722.259613, "xag": 5.5922, "xau": 0.0658, "xcd": 270.254997, "xdr": 72.169999, "xof": 58722.259513, "xpf": 10676.334893, "yer": 25034.99735, "zar": 1400.931986, "zmk": 900121.005899, "zmw": 1414.726286, "zwl": 32199.999778}, "base": "usd", "value": 99.999999, "date": "2020-01-01"} | {"type": "object", "properties": {"status": {"type": "boolean"}, "rates": {"type": "object", "properties": {"aed": {"type": "number"}, "afn": {"type": "number"}, "all": {"type": "number"}, "amd": {"type": "number"}, "ang": {"type": "number"}, "aoa": {"type": "number"}, "ars": {"type": "number"}, "aud": {"type": "number"}, "awg": {"type": "number"}, "azn": {"type": "number"}, "bam": {"type": "number"}, "bbd": {"type": "number"}, "bdt": {"type": "number"}, "bgn": {"type": "number"}, "bhd": {"type": "number"}, "bif": {"type": "number"}, "bmd": {"type": "number"}, "bnd": {"type": "number"}, "bob": {"type": "number"}, "brl": {"type": "number"}, "bsd": {"type": "number"}, "btc": {"type": "number"}, "btn": {"type": "number"}, "bwp": {"type": "number"}, "byn": {"type": "number"}, "byr": {"type": "number"}, "bzd": {"type": "number"}, "cad": {"type": "number"}, "cdf": {"type": "number"}, "chf": {"type": "number"}, "clf": {"type": "number"}, "clp": {"type": "number"}, "cny": {"type": "number"}, "cop": {"type": "number"}, "crc": {"type": "number"}, "cuc": {"type": "number"}, "cup": {"type": "number"}, "cve": {"type": "number"}, "czk": {"type": "number"}, "djf": {"type": "number"}, "dkk": {"type": "number"}, "dop": {"type": "number"}, "dzd": {"type": "number"}, "egp": {"type": "number"}, "ern": {"type": "number"}, "etb": {"type": "number"}, "eur": {"type": "number"}, "fjd": {"type": "number"}, "fkp": {"type": "number"}, "gbp": {"type": "number"}, "gel": {"type": "number"}, "ggp": {"type": "number"}, "ghs": {"type": "number"}, "gip": {"type": "number"}, "gmd": {"type": "number"}, "gnf": {"type": "number"}, "gtq": {"type": "number"}, "gyd": {"type": "number"}, "hkd": {"type": "number"}, "hnl": {"type": "number"}, "hrk": {"type": "number"}, "htg": {"type": "number"}, "huf": {"type": "number"}, "idr": {"type": "number"}, "ils": {"type": "number"}, "imp": {"type": "number"}, "inr": {"type": "number"}, "iqd": {"type": "number"}, "irr": {"type": "number"}, "isk": {"type": "number"}, "jep": {"type": "number"}, "jmd": {"type": "number"}, "jod": {"type": "number"}, "jpy": {"type": "number"}, "kes": {"type": "number"}, "kgs": {"type": "number"}, "khr": {"type": "number"}, "kmf": {"type": "number"}, "kpw": {"type": "number"}, "krw": {"type": "number"}, "kwd": {"type": "number"}, "kyd": {"type": "number"}, "kzt": {"type": "number"}, "lak": {"type": "number"}, "lbp": {"type": "number"}, "lkr": {"type": "number"}, "lrd": {"type": "number"}, "lsl": {"type": "number"}, "ltl": {"type": "number"}, "lvl": {"type": "number"}, "lyd": {"type": "number"}, "mad": {"type": "number"}, "mdl": {"type": "number"}, "mga": {"type": "number"}, "mkd": {"type": "number"}, "mmk": {"type": "number"}, "mnt": {"type": "number"}, "mop": {"type": "number"}, "mro": {"type": "number"}, "mur": {"type": "number"}, "mvr": {"type": "number"}, "mwk": {"type": "number"}, "mxn": {"type": "number"}, "myr": {"type": "number"}, "mzn": {"type": "number"}, "nad": {"type": "number"}, "ngn": {"type": "number"}, "nio": {"type": "number"}, "nok": {"type": "number"}, "npr": {"type": "number"}, "nzd": {"type": "number"}, "omr": {"type": "number"}, "pab": {"type": "number"}, "pen": {"type": "number"}, "pgk": {"type": "number"}, "php": {"type": "number"}, "pkr": {"type": "number"}, "pln": {"type": "number"}, "pyg": {"type": "number"}, "qar": {"type": "number"}, "ron": {"type": "number"}, "rsd": {"type": "number"}, "rub": {"type": "number"}, "rwf": {"type": "number"}, "sar": {"type": "number"}, "sbd": {"type": "number"}, "scr": {"type": "number"}, "sdg": {"type": "number"}, "sek": {"type": "number"}, "sgd": {"type": "number"}, "shp": {"type": "number"}, "sll": {"type": "number"}, "sos": {"type": "number"}, "srd": {"type": "number"}, "std": {"type": "number"}, "svc": {"type": "number"}, "syp": {"type": "number"}, "szl": {"type": "number"}, "thb": {"type": "number"}, "tjs": {"type": "number"}, "tmt": {"type": "number"}, "tnd": {"type": "number"}, "top": {"type": "number"}, "try": {"type": "number"}, "ttd": {"type": "number"}, "twd": {"type": "number"}, "tzs": {"type": "number"}, "uah": {"type": "number"}, "ugx": {"type": "number"}, "usd": {"type": "number"}, "uyu": {"type": "number"}, "uzs": {"type": "number"}, "vef": {"type": "number"}, "vnd": {"type": "number"}, "vuv": {"type": "number"}, "wst": {"type": "number"}, "xaf": {"type": "number"}, "xag": {"type": "number"}, "xau": {"type": "number"}, "xcd": {"type": "number"}, "xdr": {"type": "number"}, "xof": {"type": "number"}, "xpf": {"type": "number"}, "yer": {"type": "number"}, "zar": {"type": "number"}, "zmk": {"type": "number"}, "zmw": {"type": "number"}, "zwl": {"type": "number"}}}, "base": {"type": "string"}, "value": {"type": "number"}, "date": {"type": "string"}}} |
d204da66-7c8c-428f-954b-c40d240a938a/a7550ccc-ed5b-4c85-a8b3-492c3f52accd/0/0 | stocks_archive | Archive data of some blue chip's tickers | 8.1 | ping | Check that server is still alive | 200 | null | {"datetime": "2006-04-12T11:30:00.000Z", "version": "1.2.3-2345", "uptime": "54323.543"} | {"required": ["datetime"], "type": "object", "properties": {"datetime": {"description": "Server time", "type": "string", "format": "date-time"}, "version": {"description": "Server version", "type": "string"}, "uptime": {"description": "Server uptime in seconds", "type": "number", "format": "float", "minimum": -3.402823669209385e+38, "maximum": 3.402823669209385e+38}}} |
d204da66-7c8c-428f-954b-c40d240a938a/5abfae5c-3f33-401b-ade4-fd9d67070b4a/0/0 | stocks_archive | Archive data of some blue chip's tickers | 8.1 | tickerData | Returns a list of ticker records | 400 | null | {"error": "Wrong field value, period=4n"} | {"type": "object", "properties": {"error": {"description": "Error message", "type": "string"}}} |
d204da66-7c8c-428f-954b-c40d240a938a/5abfae5c-3f33-401b-ade4-fd9d67070b4a/1/0 | stocks_archive | Archive data of some blue chip's tickers | 8.1 | tickerData | Returns a list of ticker records | 200 | null | {"records": [{"closeDateTime": "2006-04-12T11:30:00.000Z", "open": 105.5, "close": 109.3, "high": 111.1, "low": 102.7, "volume": 12345}]} | {"description": "List of ticker records", "type": "object", "properties": {"records": {"type": "array", "items": {"required": ["closeDateTime", "open", "close", "high", "low", "volume"], "description": "One ticker record", "type": "object", "properties": {"closeDateTime": {"description": "Close date-time in local for stock-exchange format", "type": "string", "format": "date-time"}, "open": {"description": "Open price", "type": "number", "format": "float", "minimum": -3.402823669209385e+38, "maximum": 3.402823669209385e+38}, "close": {"description": "Close price", "type": "number", "format": "float", "minimum": -3.402823669209385e+38, "maximum": 3.402823669209385e+38}, "high": {"description": "Highest price", "type": "number", "format": "float", "minimum": -3.402823669209385e+38, "maximum": 3.402823669209385e+38}, "low": {"description": "Lowest price", "type": "number", "format": "float", "minimum": -3.402823669209385e+38, "maximum": 3.402823669209385e+38}, "volume": {"description": "Volume for period", "type": "integer", "format": "int32", "minimum": -2147483648, "maximum": 2147483647}}}}}} |
d204da66-7c8c-428f-954b-c40d240a938a/2e505d38-3b26-4901-a9a7-e04e49ed2ca2/0/0 | stocks_archive | Archive data of some blue chip's tickers | 8.1 | tickersList | Returns a list of available tickers | 200 | null | {"tickers": [{"name": "gazprom-cs", "description": "Gazprom, common shares, MICEX", "marketName": "BATS"}]} | {"description": "List of available tickers", "type": "object", "properties": {"tickers": {"type": "array", "items": {"required": ["name", "description"], "type": "object", "properties": {"name": {"description": "Short (machine) name", "type": "string"}, "description": {"description": "Long (Human) name", "type": "string"}, "marketName": {"description": "Market name", "type": "string"}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/98f38d0d-0106-4f79-b968-3a30421e33fe/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Importtransactions | Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking "Import" on each account in the web application or tapping the "New Transactions" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported. | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/98f38d0d-0106-4f79-b968-3a30421e33fe/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Importtransactions | Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking "Import" on each account in the web application or tapping the "New Transactions" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported. | 201 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/98f38d0d-0106-4f79-b968-3a30421e33fe/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Importtransactions | Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking "Import" on each account in the web application or tapping the "New Transactions" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported. | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ca51974f-8494-4745-b6cb-37ac7ea75409/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Createasingletransactionormultipletransactions | Creates a single transaction or multiple transactions. If you provide a body containing a transaction object, a single transaction will be created and if you provide a body containing a transactions array, multiple transactions will be created. Scheduled transactions cannot be created on this endpoint. | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ca51974f-8494-4745-b6cb-37ac7ea75409/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Createasingletransactionormultipletransactions | Creates a single transaction or multiple transactions. If you provide a body containing a transaction object, a single transaction will be created and if you provide a body containing a transactions array, multiple transactions will be created. Scheduled transactions cannot be created on this endpoint. | 201 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ca51974f-8494-4745-b6cb-37ac7ea75409/3/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Createasingletransactionormultipletransactions | Creates a single transaction or multiple transactions. If you provide a body containing a transaction object, a single transaction will be created and if you provide a body containing a transactions array, multiple transactions will be created. Scheduled transactions cannot be created on this endpoint. | 409 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/eb443748-a7cb-4407-848a-98bfc340d6cf/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listtransactions | Returns budget transactions | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/eb443748-a7cb-4407-848a-98bfc340d6cf/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listtransactions | Returns budget transactions | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/eb443748-a7cb-4407-848a-98bfc340d6cf/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listtransactions | Returns budget transactions | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/169869ee-5461-432a-a9f1-a8bd1e2b1953/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Updatemultipletransactions | Updates multiple transactions, by id or import_id. | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/169869ee-5461-432a-a9f1-a8bd1e2b1953/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Updatemultipletransactions | Updates multiple transactions, by id or import_id. | 209 | null | {"data": {"transaction_ids": ["sit veniam"], "server_knowledge": 0, "transaction": {"account_id": "aa2edde7-4116-fbf6-cb99-165c94d4c0d3", "account_name": "id laborum", "amount": 0, "cleared": "cleared", "date": "1977-04-21", "deleted": true, "id": "dolore tempo", "subtransactions": [{"id": "Excepteur aute in et", "transaction_id": "reprehenderit deserunt nisi nostrud", "amount": 0, "deleted": true, "memo": "mollit amet aliqua", "payee_id": "3297ce7b-3535-478f-6a99-ee92413ee69f", "payee_name": "in", "category_id": "bb3ed94d-37dd-aca1-9336-96d710156f7e", "category_name": "in incididunt culpa", "transfer_account_id": "urn:uuid:5d4e5e8e-c002-980b-4dc8-04c37d5983e3", "transfer_transaction_id": "qui"}], "memo": "Duis aliquip enim exercitation non", "flag_color": "orange", "payee_id": "urn:uuid:f5a25efc-182c-b7df-4cb0-4a6e223993a4", "category_id": "c571fac6-ab0b-649d-41cb-7ef0426dab15", "transfer_account_id": "urn:uuid:8e00bccd-1a9f-6c46-707a-e5c197339eae", "transfer_transaction_id": "sunt nostrud deserunt Lorem", "matched_transaction_id": "ut exerci", "import_id": "veniam dolor enim velit", "payee_name": "voluptate pariatur", "category_name": "exercitation sint aliquip velit"}, "transactions": [{"account_id": "e95d6860-d49d-4ad0-8344-76bedbcba3ac", "account_name": "in ullamco", "amount": 0, "approved": true, "cleared": "reconciled", "date": "1944-04-20", "deleted": true, "id": "ipsum quis", "subtransactions": [{"id": "commod", "transaction_id": "eu laborum", "amount": 0, "memo": "in exercitation", "payee_id": "64a52159-1902-6697-8ec2-6867c3b89add", "payee_name": "velit commodo veniam in ex", "category_id": "4426f8b2-269f-c99a-0e91-fa6491427b49", "category_name": "nisi voluptate dolore et", "transfer_account_id": "ff0f6efa-b7fa-3a03-c069-bb2423c27084", "transfer_transaction_id": "non in"}], "memo": "occaecat dolore reprehenderit eu dolor", "flag_color": "undefined", "payee_id": "urn:uuid:a82f3766-5b7d-2abc-afb7-77dde81e9720", "category_id": "urn:uuid:83ca94cc-c6f6-2dbe-5039-a474b67c2715", "transfer_account_id": "urn:uuid:230b2006-f03f-b241-c6a7-80c508f58b86", "transfer_transaction_id": "velit par", "matched_transaction_id": "laboris culpa", "import_id": "sit voluptate", "payee_name": "sunt in proident deserunt labore", "category_name": "exercitation ut ut pariatur"}], "duplicate_import_ids": ["deserun"]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"transaction_ids": {"type": "array", "items": {"type": "string", "description": "", "default": "sit veniam"}}, "server_knowledge": {"type": "integer", "description": "", "default": -32583556}, "transaction": {"type": "object", "properties": {"account_id": {"type": "string", "description": "", "default": "aa2edde7-4116-fbf6-cb99-165c94d4c0d3"}, "account_name": {"type": "string", "description": "", "default": "id laborum"}, "amount": {"type": "integer", "description": "", "default": -42241512}, "approved": {}, "cleared": {"type": "string", "description": "", "default": "cleared"}, "date": {"type": "string", "description": "", "default": "1977-04-21"}, "deleted": {"type": "boolean", "description": "", "default": true}, "id": {"type": "string", "description": "", "default": "dolore tempo"}, "subtransactions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "Excepteur aute in et"}, "transaction_id": {"type": "string", "description": "", "default": "reprehenderit deserunt nisi nostrud"}, "amount": {"type": "integer", "description": "", "default": -49512462}, "deleted": {"type": "boolean", "description": "", "default": true}, "memo": {"type": "string", "description": "", "default": "mollit amet aliqua"}, "payee_id": {"type": "string", "description": "", "default": "3297ce7b-3535-478f-6a99-ee92413ee69f"}, "payee_name": {"type": "string", "description": "", "default": "in"}, "category_id": {"type": "string", "description": "", "default": "bb3ed94d-37dd-aca1-9336-96d710156f7e"}, "category_name": {"type": "string", "description": "", "default": "in incididunt culpa"}, "transfer_account_id": {"type": "string", "description": "", "default": "urn:uuid:5d4e5e8e-c002-980b-4dc8-04c37d5983e3"}, "transfer_transaction_id": {"type": "string", "description": "", "default": "qui"}}}}, "memo": {"type": "string", "description": "", "default": "Duis aliquip enim exercitation non"}, "flag_color": {"type": "string", "description": "", "default": "orange"}, "payee_id": {"type": "string", "description": "", "default": "urn:uuid:f5a25efc-182c-b7df-4cb0-4a6e223993a4"}, "category_id": {"type": "string", "description": "", "default": "c571fac6-ab0b-649d-41cb-7ef0426dab15"}, "transfer_account_id": {"type": "string", "description": "", "default": "urn:uuid:8e00bccd-1a9f-6c46-707a-e5c197339eae"}, "transfer_transaction_id": {"type": "string", "description": "", "default": "sunt nostrud deserunt Lorem"}, "matched_transaction_id": {"type": "string", "description": "", "default": "ut exerci"}, "import_id": {"type": "string", "description": "", "default": "veniam dolor enim velit"}, "payee_name": {"type": "string", "description": "", "default": "voluptate pariatur"}, "category_name": {"type": "string", "description": "", "default": "exercitation sint aliquip velit"}}}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"account_id": {"type": "string", "description": "", "default": "e95d6860-d49d-4ad0-8344-76bedbcba3ac"}, "account_name": {"type": "string", "description": "", "default": "in ullamco"}, "amount": {"type": "integer", "description": "", "default": -89837197}, "approved": {"type": "boolean", "description": "", "default": true}, "cleared": {"type": "string", "description": "", "default": "reconciled"}, "date": {"type": "string", "description": "", "default": "1944-04-20"}, "deleted": {"type": "boolean", "description": "", "default": true}, "id": {"type": "string", "description": "", "default": "ipsum quis"}, "subtransactions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "commod"}, "transaction_id": {"type": "string", "description": "", "default": "eu laborum"}, "amount": {"type": "integer", "description": "", "default": 55791129}, "deleted": {}, "memo": {"type": "string", "description": "", "default": "in exercitation"}, "payee_id": {"type": "string", "description": "", "default": "64a52159-1902-6697-8ec2-6867c3b89add"}, "payee_name": {"type": "string", "description": "", "default": "velit commodo veniam in ex"}, "category_id": {"type": "string", "description": "", "default": "4426f8b2-269f-c99a-0e91-fa6491427b49"}, "category_name": {"type": "string", "description": "", "default": "nisi voluptate dolore et"}, "transfer_account_id": {"type": "string", "description": "", "default": "ff0f6efa-b7fa-3a03-c069-bb2423c27084"}, "transfer_transaction_id": {"type": "string", "description": "", "default": "non in"}}}}, "memo": {"type": "string", "description": "", "default": "occaecat dolore reprehenderit eu dolor"}, "flag_color": {"type": "string", "description": "", "default": "undefined"}, "payee_id": {"type": "string", "description": "", "default": "urn:uuid:a82f3766-5b7d-2abc-afb7-77dde81e9720"}, "category_id": {"type": "string", "description": "", "default": "urn:uuid:83ca94cc-c6f6-2dbe-5039-a474b67c2715"}, "transfer_account_id": {"type": "string", "description": "", "default": "urn:uuid:230b2006-f03f-b241-c6a7-80c508f58b86"}, "transfer_transaction_id": {"type": "string", "description": "", "default": "velit par"}, "matched_transaction_id": {"type": "string", "description": "", "default": "laboris culpa"}, "import_id": {"type": "string", "description": "", "default": "sit voluptate"}, "payee_name": {"type": "string", "description": "", "default": "sunt in proident deserunt labore"}, "category_name": {"type": "string", "description": "", "default": "exercitation ut ut pariatur"}}}}, "duplicate_import_ids": {"type": "array", "items": {"type": "string", "description": "", "default": "deserun"}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/9f817d05-4515-4b67-9003-2549e6b17f30/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singletransaction | Returns a single transaction | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/9f817d05-4515-4b67-9003-2549e6b17f30/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singletransaction | Returns a single transaction | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/9f817d05-4515-4b67-9003-2549e6b17f30/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singletransaction | Returns a single transaction | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/df1330d2-dc66-496c-b724-8e06bf97fea5/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Updatesanexistingtransaction | Updates a single transaction | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/df1330d2-dc66-496c-b724-8e06bf97fea5/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Updatesanexistingtransaction | Updates a single transaction | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/51095636-fb09-4e8f-92b3-03266010a703/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Bulkcreatetransactions | Creates multiple transactions. Although this endpoint is still supported, it is recommended to use 'POST /budgets/{budget_id}/transactions' to create multiple transactions. | 201 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/51095636-fb09-4e8f-92b3-03266010a703/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Bulkcreatetransactions | Creates multiple transactions. Although this endpoint is still supported, it is recommended to use 'POST /budgets/{budget_id}/transactions' to create multiple transactions. | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8a68f78c-9a0a-4e31-96b6-06795be77cb2/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listpayees | Returns all payees | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8a68f78c-9a0a-4e31-96b6-06795be77cb2/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listpayees | Returns all payees | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8a68f78c-9a0a-4e31-96b6-06795be77cb2/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listpayees | Returns all payees | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ea34a5bf-55e9-4b70-8017-fddb759b4f7e/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listlocationsforapayee | Returns all payee locations for a specified payee | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ea34a5bf-55e9-4b70-8017-fddb759b4f7e/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listlocationsforapayee | Returns all payee locations for a specified payee | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ea34a5bf-55e9-4b70-8017-fddb759b4f7e/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listlocationsforapayee | Returns all payee locations for a specified payee | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/62896124-1637-4ac8-ac2c-11c2e8ef266e/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singleaccount | Returns a single account | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/62896124-1637-4ac8-ac2c-11c2e8ef266e/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singleaccount | Returns a single account | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/62896124-1637-4ac8-ac2c-11c2e8ef266e/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singleaccount | Returns a single account | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/2d436d28-408a-4cde-b185-ee2ebe2ca247/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlepayee | Returns a single payee | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/2d436d28-408a-4cde-b185-ee2ebe2ca247/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlepayee | Returns a single payee | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/2d436d28-408a-4cde-b185-ee2ebe2ca247/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlepayee | Returns a single payee | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ce930cd4-ed3c-4627-be2b-412063299629/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listaccounttransactions | Returns all transactions for a specified account | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ce930cd4-ed3c-4627-be2b-412063299629/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listaccounttransactions | Returns all transactions for a specified account | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/ce930cd4-ed3c-4627-be2b-412063299629/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listaccounttransactions | Returns all transactions for a specified account | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/b2bdca86-7f1b-459a-a187-a4bad1ebfd11/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listpayeetransactions | Returns all transactions for a specified payee | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/b2bdca86-7f1b-459a-a187-a4bad1ebfd11/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listpayeetransactions | Returns all transactions for a specified payee | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/b2bdca86-7f1b-459a-a187-a4bad1ebfd11/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listpayeetransactions | Returns all transactions for a specified payee | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/a3221e4f-989d-43dd-8f31-49e6e6ef43bb/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Accountlist | Returns all accounts | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/a3221e4f-989d-43dd-8f31-49e6e6ef43bb/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Accountlist | Returns all accounts | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/a3221e4f-989d-43dd-8f31-49e6e6ef43bb/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Accountlist | Returns all accounts | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/98decf61-5b18-487a-a014-663a474d94af/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Createanewaccount | Creates a new account | 201 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/98decf61-5b18-487a-a014-663a474d94af/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Createanewaccount | Creates a new account | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8715c6f4-f558-487f-90fd-abc9cda4e88c/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlescheduledtransaction | Returns a single scheduled transaction | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8715c6f4-f558-487f-90fd-abc9cda4e88c/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlescheduledtransaction | Returns a single scheduled transaction | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8715c6f4-f558-487f-90fd-abc9cda4e88c/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlescheduledtransaction | Returns a single scheduled transaction | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/54954076-3da2-4736-b744-a300d42f0ea6/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlebudget | Returns a single budget with all related entities. This resource is effectively a full budget export. | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/54954076-3da2-4736-b744-a300d42f0ea6/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlebudget | Returns a single budget with all related entities. This resource is effectively a full budget export. | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/54954076-3da2-4736-b744-a300d42f0ea6/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlebudget | Returns a single budget with all related entities. This resource is effectively a full budget export. | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/f74c3537-4419-4d69-8173-22797af09bfe/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listscheduledtransactions | Returns all scheduled transactions | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/f74c3537-4419-4d69-8173-22797af09bfe/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listscheduledtransactions | Returns all scheduled transactions | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/f74c3537-4419-4d69-8173-22797af09bfe/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listscheduledtransactions | Returns all scheduled transactions | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/5de9f5d7-b920-4979-b5fa-de9ef9a6b277/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listbudgets | Returns budgets list with summary information | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/5de9f5d7-b920-4979-b5fa-de9ef9a6b277/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listbudgets | Returns budgets list with summary information | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/5de9f5d7-b920-4979-b5fa-de9ef9a6b277/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listbudgets | Returns budgets list with summary information | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/2b73f4db-ccbf-4db1-a04f-0b8f462df748/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Userinfo | Returns authenticated user information | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/2b73f4db-ccbf-4db1-a04f-0b8f462df748/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Userinfo | Returns authenticated user information | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/7d1a53fc-d5d0-4455-a575-055e2b08ba93/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | BudgetSettings | Returns settings for a budget | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/7d1a53fc-d5d0-4455-a575-055e2b08ba93/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | BudgetSettings | Returns settings for a budget | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/7d1a53fc-d5d0-4455-a575-055e2b08ba93/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | BudgetSettings | Returns settings for a budget | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8cb274fc-25a1-4fd6-91d3-09a8d3f89102/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlebudgetmonth | Returns a single budget month | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8cb274fc-25a1-4fd6-91d3-09a8d3f89102/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlebudgetmonth | Returns a single budget month | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/8cb274fc-25a1-4fd6-91d3-09a8d3f89102/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlebudgetmonth | Returns a single budget month | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/d284373a-8e2b-415a-913f-772e42e6f4ec/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Updateacategoryforaspecificmonth | Update a category for a specific month. Only budgeted amount can be updated. | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/d284373a-8e2b-415a-913f-772e42e6f4ec/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Updateacategoryforaspecificmonth | Update a category for a specific month. Only budgeted amount can be updated. | 400 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/76d38d40-fc1a-420d-b69e-20aff55deb32/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlecategoryforaspecificbudgetmonth | Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/76d38d40-fc1a-420d-b69e-20aff55deb32/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlecategoryforaspecificbudgetmonth | Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/76d38d40-fc1a-420d-b69e-20aff55deb32/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Singlecategoryforaspecificbudgetmonth | Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/d0220a56-dd39-41f0-b86a-e554e780f45d/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listcategories | Returns all categories grouped by category group. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/d0220a56-dd39-41f0-b86a-e554e780f45d/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listcategories | Returns all categories grouped by category group. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). | 500 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/d0220a56-dd39-41f0-b86a-e554e780f45d/2/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listcategories | Returns all categories grouped by category group. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC). | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/678e2016-812f-44d9-8fec-b1784941ac18/0/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listbudgetmonths | Returns all budget months | 200 | null | {"data": {"account": {"id": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d", "name": "minim esse elit amet Excepteur", "type": "payPal", "closed": true, "balance": 0, "cleared_balance": 0, "uncleared_balance": 0, "transfer_payee_id": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2", "deleted": true, "note": "pariatur aliqua", "direct_import_in_error": true}}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"account": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "6293d5ef-6a9f-17e7-2ee2-c1dda201063d"}, "name": {"type": "string", "description": "", "default": "minim esse elit amet Excepteur"}, "type": {"type": "string", "description": "", "default": "payPal"}, "on_budget": {}, "closed": {"type": "boolean", "description": "", "default": true}, "balance": {"type": "integer", "description": "", "default": 11743343}, "cleared_balance": {"type": "integer", "description": "", "default": -53896876}, "uncleared_balance": {"type": "integer", "description": "", "default": 20876812}, "transfer_payee_id": {"type": "string", "description": "", "default": "urn:uuid:971127f2-e33f-a2e7-eee2-6ea282983ac2"}, "deleted": {"type": "boolean", "description": "", "default": true}, "note": {"type": "string", "description": "", "default": "pariatur aliqua"}, "direct_import_linked": {}, "direct_import_in_error": {"type": "boolean", "description": "", "default": true}}}}}}} |
be64390a-513f-484a-8e06-447bc04eb022/678e2016-812f-44d9-8fec-b1784941ac18/1/0 | YNAB - You Need a Budget | Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.youneedabudget.com | null | Listbudgetmonths | Returns all budget months | 404 | null | {"error": {"id": "anim pariatur in qui consectetur", "name": "exercitation proident", "detail": "in sint id ipsum"}} | {"type": "object", "properties": {"error": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "anim pariatur in qui consectetur"}, "name": {"type": "string", "description": "", "default": "exercitation proident"}, "detail": {"type": "string", "description": "", "default": "in sint id ipsum"}}}}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.