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
|
---|---|---|---|---|---|---|---|---|---|
b733f2ac-6860-4517-8dc4-33b5e298c996/62a13fa6-5a69-4771-ae5f-d967348336bb/0/0 | U.S. Sales Tax By Zip | Calculate sales tax using only a zip code! Get single rates, bulk rates, and calculate sales price with a simple request! 40,000+ zips, updated regularly. | 8.2 | bulkRates | Send an array of zip codes (max 25 per request) and receive back rates for each matching item. | 200 | New Example | [{"sentZip": "28269", "rateInfo": {"TaxRegionName": "HUNTERSVILLE", "NormalizedCity": "charlotte", "ZipCode": "28269", "City": "CHARLOTTE", "CombinedRate": "7.250000", "County": "MECKLENBURG COUNTY", "StateRate": "4.750000", "SpecialRate": "0.500000", "Month": "10", "CityRate": "0.000000", "Year": "2023", "State": "NC", "NormalizedCounty": "mecklenburg-county", "CountyRate": "2.000000", "NormalizedTaxRegionName": "huntersville", "EstimatedPopulation": "56159"}}, {"sentZip": "82002", "rateInfo": {"TaxRegionName": "CHEYENNE", "NormalizedCity": "cheyenne", "ZipCode": "82002", "City": "CHEYENNE", "CombinedRate": "6.000000", "County": "LARAMIE COUNTY", "StateRate": "4.000000", "SpecialRate": "0.000000", "Month": "10", "CityRate": "0.000000", "Year": "2023", "State": "WY", "NormalizedCounty": "laramie-county", "CountyRate": "2.000000", "NormalizedTaxRegionName": "cheyenne", "EstimatedPopulation": "0"}}, {"sentZip": "46666", "rateInfo": "no data found for zip"}] | {"type": "array", "items": {"type": "object"}} |
b733f2ac-6860-4517-8dc4-33b5e298c996/51fefd10-07ca-4a02-88b4-9f85b3b0d1bc/0/0 | U.S. Sales Tax By Zip | Calculate sales tax using only a zip code! Get single rates, bulk rates, and calculate sales price with a simple request! 40,000+ zips, updated regularly. | 8.2 | getRate | Gets a single rate using a valid 5 digit zip code. | 200 | New Example | {"TaxRegionName": "HUNTERSVILLE", "NormalizedCity": "charlotte", "ZipCode": "28269", "City": "CHARLOTTE", "CombinedRate": "7.250000", "County": "MECKLENBURG COUNTY", "StateRate": "4.750000", "SpecialRate": "0.500000", "Month": "10", "CityRate": "0.000000", "Year": "2023", "State": "NC", "NormalizedCounty": "mecklenburg-county", "CountyRate": "2.000000", "NormalizedTaxRegionName": "huntersville", "EstimatedPopulation": "56159"} | {"type": "object", "properties": {"TaxRegionName": {"type": "string"}, "NormalizedCity": {"type": "string"}, "ZipCode": {"type": "string"}, "City": {"type": "string"}, "CombinedRate": {"type": "string"}, "County": {"type": "string"}, "StateRate": {"type": "string"}, "SpecialRate": {"type": "string"}, "Month": {"type": "string"}, "CityRate": {"type": "string"}, "Year": {"type": "string"}, "State": {"type": "string"}, "NormalizedCounty": {"type": "string"}, "CountyRate": {"type": "string"}, "NormalizedTaxRegionName": {"type": "string"}, "EstimatedPopulation": {"type": "string"}}} |
7dc09fc6-dcf0-4eaa-b746-1873a8dee936/endpoint_fad83eca-ccb2-4599-af48-336cf5206f2e/0/0 | US Sales Tax Rates | The US sales tax rates API provides accurate and up-to-date sales tax in the United States. | 7.7 | tax_search | Search sales tax rates by city name | 400 | Example_1 | {"status": false, "message": "city name 'ks' must be at least 3 chars"} | {"type": "object", "properties": {"status": {"type": "boolean"}, "message": {"type": "string"}}} |
7dc09fc6-dcf0-4eaa-b746-1873a8dee936/endpoint_fad83eca-ccb2-4599-af48-336cf5206f2e/2/0 | US Sales Tax Rates | The US sales tax rates API provides accurate and up-to-date sales tax in the United States. | 7.7 | tax_search | Search sales tax rates by city name | 200 | Example_1 | {"count": 3, "data": [{"zip_code": 85550, "state": "AZ", "county_rate": "0.01000", "state_rate": "0.05600", "city": "San Carlos", "special_rate": "0.00000", "city_rate": "0.00000"}, {"zip_code": 90001, "state": "CA", "county_rate": "0.00250", "state_rate": "0.06000", "city": "Los Angeles", "special_rate": "0.03250", "city_rate": "0.00750"}, {"zip_code": 90002, "state": "CA", "county_rate": "0.00250", "state_rate": "0.06000", "city": "Los Angeles", "special_rate": "0.03000", "city_rate": "0.01000"}], "status": true, "message": ""} | {"type": "object", "properties": {"count": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"zip_code": {"type": "integer"}, "state": {"type": "string"}, "county_rate": {"type": "string"}, "state_rate": {"type": "string"}, "city": {"type": "string"}, "special_rate": {"type": "string"}, "city_rate": {"type": "string"}}}}, "status": {"type": "boolean"}, "message": {"type": "string"}}} |
7dc09fc6-dcf0-4eaa-b746-1873a8dee936/endpoint_7ab97704-15e0-4408-9ba5-d85b34fed270/0/0 | US Sales Tax Rates | The US sales tax rates API provides accurate and up-to-date sales tax in the United States. | 7.7 | tax_get | Return a sales tax rates | 400 | Example_1 | {"status": false, "message": "zip code: '100' is not exist"} | {"type": "object", "properties": {"status": {"type": "boolean"}, "message": {"type": "string"}}} |
7dc09fc6-dcf0-4eaa-b746-1873a8dee936/endpoint_7ab97704-15e0-4408-9ba5-d85b34fed270/1/0 | US Sales Tax Rates | The US sales tax rates API provides accurate and up-to-date sales tax in the United States. | 7.7 | tax_get | Return a sales tax rates | 200 | Example_1 | {"data": {"zip_code": 99675, "state": "AK", "county_rate": "0.00000", "state_rate": "0.00000", "city": "ALASKA", "special_rate": "0.00000", "city_rate": "0.00000"}, "status": true, "message": ""} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"zip_code": {"type": "integer"}, "state": {"type": "string"}, "county_rate": {"type": "string"}, "state_rate": {"type": "string"}, "city": {"type": "string"}, "special_rate": {"type": "string"}, "city_rate": {"type": "string"}}}, "status": {"type": "boolean"}, "message": {"type": "string"}}} |
578f90c4-3a48-4d80-bfca-25d26957bffd/30cc8b8d-82b4-4d83-943d-e961ae78e056/0/0 | EU Taxonomy | Exclusive datasets on EU-taxonomy-eligible and -aligned Revenues, Capex and Opex for European public companies. Each data point is traceable to its source, right down to a specific line in the original publication! | 5.9 | /api/v2/DataSets/esg/eutaxonomy | 200 | null | {"company": "", "measurementUnits": "", "scale": 0, "dataSets": [{"name": "", "tags": [], "breakdown": [], "dataPoints": [{"value": 0, "percentValue": 0, "date": {"endDate": "", "duration": 0}, "reportDate": "", "source": ""}]}]} | {"type": "object", "properties": {"company": {"type": ["string", "null"]}, "measurementUnits": {"type": ["string", "null"]}, "scale": {"type": ["number", "null"], "format": "double", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "dataSets": {"type": ["array", "null"], "items": {"type": "object", "properties": {"name": {"type": ["string", "null"]}, "tags": {"type": ["array", "null"], "items": {"type": "string"}}, "breakdown": {"type": ["array", "null"]}, "dataPoints": {"type": ["array", "null"], "items": {"type": "object", "properties": {"value": {"type": ["number", "null"], "format": "double", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "percentValue": {"type": ["number", "null"], "format": "double", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "date": {"type": "object", "properties": {"endDate": {"type": ["string", "null"], "description": "Exact date or period's end"}, "duration": {"type": "integer", "description": "Duration of period (0 for exact dates)", "format": "int32", "minimum": -2147483648, "maximum": 2147483647}}, "additionalProperties": false}, "reportDate": {"type": ["string", "null"]}, "source": {"type": ["string", "null"], "format": "uri"}}, "additionalProperties": false}}}, "additionalProperties": false}}}, "additionalProperties": false} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/0b6bcf3a-3a79-431a-8047-ac7d4fecb514/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GetTransactionDetail | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/4782246d-7aa8-48cf-96aa-53eb727ccf80/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GetWalletContractBalance | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/01c6baa1-539f-4e9c-98b9-20ddd6f2df9b/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GetTronWalletBalance1 | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/722ecd24-8713-4c92-920a-9332c302c997/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GetTronWalletBalance | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/65423a79-b3e3-483b-ba1c-33ec0a629937/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GetWalletContractBalance2 | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/f456d785-f277-401c-b912-9312452559cb/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GenerateWallet | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/fc18b156-be6e-4d0b-9405-88f1464d9afb/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GetTransactionDetail3 | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
ceff003c-239d-4638-807f-f4e6783ccd2f/48b9e4d0-43a1-415e-8f26-92e4ad822834/0/0 | BlockChainAPI | Generate Tron Wallet, Get Balance Of Wallet on Blockchain, Make Transaction (in development), Get Transaction Detail Base of the transaction hash. | null | GenerateWallet0 | 200 | null | {"data": {"private_key": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66", "public_key": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3", "address_hex": "41f80a4defed810220a549c95d84bc329f4633cf94", "address_base58": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"private_key": {"type": "string", "description": "", "default": "24a47a9ff66683462b11e935d30919409b929b558f9dcff24e6acad995688d66"}, "public_key": {"type": "string", "description": "", "default": "04d2d1d8f894148f50b469852e595dd56ae5c955a63e08d1ab3c97a97b2f041a5d8895c6fd2ce0c4be39cfb0dc4e5f9474b0f3a70119e678188a624a992c8a38c3"}, "address_hex": {"type": "string", "description": "", "default": "41f80a4defed810220a549c95d84bc329f4633cf94"}, "address_base58": {"type": "string", "description": "", "default": "TYaivbeQaK85KrHajGQ6qMwsKmxHrMMWPC"}}}}} |
|
1572b16a-32d5-4252-881d-6b1d79b01a90/dcdca73a-8c98-48b8-a9da-4e0182c72980/0/0 | Market Fluent Value Investing Research USA | Integrating Market Fluent's database into your own application is now easy! Its is ideal for investors looking for companies that meet specific criteria of value investing, based on the time-tested methods of Graham and Dodd. We provide high quality database, updated every 24 hours, contains over 4000 companies across Europe and North American. With more added all the time. | null | All companies listed | Currently, we have over 4000 companies that have been reviewed and assessed using the principles set out by Ben Graham in The Intelligent Investor.
The return will include Ticker (GENERAL_CODE) and Company name (GENERAL_NAME). The ticker is used to find a company full report. Also, you can is if the company you are interested in, is part of the database. | 200 | New Example | [{"General_Code": "ACA", "General_Name": "Cr\u00e9dit Agricole S.A"}, {"General_Code": "BNP", "General_Name": "BNP Paribas SA"}, {"General_Code": "DG", "General_Name": "VINCI SA"}, {"General_Code": "EDF", "General_Name": "Electricit\u00e9 de France S.A"}, {"General_Code": "COV", "General_Name": "Covivio"}, {"General_Code": "FR", "General_Name": "Valeo SE"}, {"General_Code": "GLE", "General_Name": "Soci\u00e9t\u00e9 G\u00e9n\u00e9rale Soci\u00e9t\u00e9 anonyme"}, {"General_Code": "ENGI", "General_Name": "ENGIE SA"}, {"General_Code": "ICAD", "General_Name": "Icade SA"}, {"General_Code": "LOCAL", "General_Name": "Solocal Group S.A"}, {"General_Code": "MMB", "General_Name": "Lagardere SA"}, {"General_Code": "MMT", "General_Name": "M\u00e9tropole T\u00e9l\u00e9vision S.A"}, {"General_Code": "ORA", "General_Name": "Orange S.A"}, {"General_Code": "RNO", "General_Name": "Renault SA"}, {"General_Code": "SAN", "General_Name": "Sanofi"}, {"General_Code": "SCR", "General_Name": "SCOR SE"}, {"General_Code": "SU", "General_Name": "Schneider Electric S.E"}, {"General_Code": "VIE", "General_Name": "Veolia Environnement S.A"}, {"General_Code": "VIV", "General_Name": "Vivendi SE"}, {"General_Code": "OR", "General_Name": "L'Or\u00e9al S.A."}] | {"type": "array", "items": {"type": "object", "properties": {"General_Code": {"type": "string"}, "General_Name": {"type": "string"}}}} |
1572b16a-32d5-4252-881d-6b1d79b01a90/2bfb371e-d243-4c8e-84a5-1f730b8fd56b/0/0 | Market Fluent Value Investing Research USA | Integrating Market Fluent's database into your own application is now easy! Its is ideal for investors looking for companies that meet specific criteria of value investing, based on the time-tested methods of Graham and Dodd. We provide high quality database, updated every 24 hours, contains over 4000 companies across Europe and North American. With more added all the time. | null | List of USA Companies | This list contains all the USA companies we currently hold in our database. We update our database every month.
The return will include Ticker (GENERAL_CODE) and Company name (GENERAL_NAME). The ticker is used to find a company full report. Also, you can is if the company you are interested in, is part of the database. | 200 | New Example | [{"General_Code": "ALV", "General_Name": "Autoliv Inc"}, {"General_Code": "CG", "General_Name": "The Carlyle Group Inc"}, {"General_Code": "MMM", "General_Name": "3M Company"}, {"General_Code": "ABBV", "General_Name": "AbbVie Inc"}, {"General_Code": "IRM", "General_Name": "Iron Mountain Incorporated"}, {"General_Code": "ADBE", "General_Name": "Adobe Inc"}, {"General_Code": "AFL", "General_Name": "Aflac Incorporated"}, {"General_Code": "A", "General_Name": "Agilent Technologies Inc"}, {"General_Code": "APD", "General_Name": "Air Products and Chemicals Inc"}, {"General_Code": "ATI", "General_Name": "Allegheny Technologies Incorporated"}, {"General_Code": "ALL", "General_Name": "The Allstate Corporation"}, {"General_Code": "MO", "General_Name": "Altria Group Inc"}] | {"type": "array", "items": {"type": "object", "properties": {"General_Code": {"type": "string"}, "General_Name": {"type": "string"}}}} |
f658381c-5085-4505-b57a-d467e3a082de/ecfad466-5923-42c2-b890-785bb413ba93/0/0 | LoanSimulator | Loan simulator | null | Fix Pay Simulation | Fix Pay Simulation. Parameters are /principal/rate/months where principal is the amount of loan, rate is the interest and months the number of monthly payments. The output will be a json containing the monthly ammount to be paid and an array with the beginning balance, interest, capital (principal) and ending balance | 200 | New Example | {"monthly_payment": "84.01", "payment_schedule": [{"month": "1", "beginning_balance": "1000", "interest": "1.25", "principal": "82.76", "ending_balance": "917.24"}, {"month": "2", "beginning_balance": "917.24", "interest": "1.15", "principal": "82.87", "ending_balance": "834.37"}, {"month": "3", "beginning_balance": "834.37", "interest": "1.04", "principal": "82.97", "ending_balance": "751.40"}, {"month": "4", "beginning_balance": "751.40", "interest": "0.94", "principal": "83.07", "ending_balance": "668.33"}, {"month": "5", "beginning_balance": "668.33", "interest": "0.84", "principal": "83.18", "ending_balance": "585.15"}, {"month": "6", "beginning_balance": "585.15", "interest": "0.73", "principal": "83.28", "ending_balance": "501.87"}, {"month": "7", "beginning_balance": "501.87", "interest": "0.63", "principal": "83.38", "ending_balance": "418.49"}, {"month": "8", "beginning_balance": "418.49", "interest": "0.52", "principal": "83.49", "ending_balance": "335.00"}, {"month": "9", "beginning_balance": "335.00", "interest": "0.42", "principal": "83.59", "ending_balance": "251.41"}, {"month": "10", "beginning_balance": "251.41", "interest": "0.31", "principal": "83.70", "ending_balance": "167.71"}, {"month": "11", "beginning_balance": "167.71", "interest": "0.21", "principal": "83.80", "ending_balance": "83.91"}, {"month": "12", "beginning_balance": "83.91", "interest": "0.10", "principal": "83.91", "ending_balance": "0.00"}, {"month": "13", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "14", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "15", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "16", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "17", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "18", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "19", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "20", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "21", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "22", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "23", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "24", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "25", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "26", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "27", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "28", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "29", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "30", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "31", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "32", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "33", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "34", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "35", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "36", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "37", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "38", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "39", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "40", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "41", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "42", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "43", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "44", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "45", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "46", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "47", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "48", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "49", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "50", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "51", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "52", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "53", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "54", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "55", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "56", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "57", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "58", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "59", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "60", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "61", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "62", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "63", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "64", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "65", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "66", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "67", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "68", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "69", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "70", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "71", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "72", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "73", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "74", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "75", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "76", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "77", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "78", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "79", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "80", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "81", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "82", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "83", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}, {"month": "84", "beginning_balance": "0.00", "interest": "0.00", "principal": "84.01", "ending_balance": "0.00"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"monthly_payment": {"type": "string"}, "payment_schedule": {"type": "array", "items": {"type": "object", "properties": {"month": {"type": "string"}, "beginning_balance": {"type": "string"}, "interest": {"type": "string"}, "principal": {"type": "string"}, "ending_balance": {"type": "string"}}, "required": ["beginning_balance", "ending_balance", "interest", "month", "principal"]}}}, "required": ["monthly_payment", "payment_schedule"]} |
2ecb5e67-74a8-4d9a-b60e-77ea195c22d7/7423e369-b08d-43be-a685-6a6531a74344/0/0 | Ghana Income Tax And SSNIT Calculator | This API will calculate Ghana's income tax and SSNIT deductions. | null | Income Tax And SSNIT Deductions Calculator | This endpoint will calculate and return the Ghanaian income tax and SSNIT Deductions. | 200 | Response | {"Basic_Amount(GHs)": 1200, "Taxable_Amount(GHs)": 1134, "Tier1_Tax_Amount(%)": 13, "Tier2_Tax_Amount(%)": 5.5, "Tier1_Amount(GHs)": 156, "Tier2_Amount(GHs)": 66, "Income_Tax_Amount(GHs)": 121.13, "Total_Amount_After_Tax(Net)(GHs)": 1012.88} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"Basic_Amount(GHs)": {"type": "integer"}, "Taxable_Amount(GHs)": {"type": "integer"}, "Tier1_Tax_Amount(%)": {"type": "integer"}, "Tier2_Tax_Amount(%)": {"type": "number"}, "Tier1_Amount(GHs)": {"type": "integer"}, "Tier2_Amount(GHs)": {"type": "integer"}, "Income_Tax_Amount(GHs)": {"type": "number"}, "Total_Amount_After_Tax(Net)(GHs)": {"type": "number"}}, "required": ["Basic_Amount(GHs)", "Income_Tax_Amount(GHs)", "Taxable_Amount(GHs)", "Tier1_Amount(GHs)", "Tier1_Tax_Amount(%)", "Tier2_Amount(GHs)", "Tier2_Tax_Amount(%)", "Total_Amount_After_Tax(Net)(GHs)"]} |
6c059953-689e-4e00-8456-78f25e2911f2/832c6f8a-3659-40ac-b27b-d530f7a8fffe/0/0 | OCW | Check Mailing API | null | Retrieveaattachmentdetails | Retrieve details of existing attachment.
Path parameters
checkId
Required
The id of the check.
checkAttachmentId
Required
The id of the check attachment.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/53eddab2-33f5-468d-9bfe-73dac1483672/0/0 | OCW | Check Mailing API | null | RetrievevoucherbycheckId | Details of an existing voucher. It can be retrieve by passing checkId as well as retrieve directly by passing voucherId.
Path parameters
checkId
Required
The id of the check to retrieve associated voucher.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/85a8360f-3042-447b-98bd-c305b33562c6/0/0 | OCW | Check Mailing API | null | Deleteacustomtoaddress | Permanently deletes a custom to address.
Path parameters
customToAddressId
Required
The id of the Custom to address to be delete.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/fd44c83d-9438-4209-9baf-34c2a742e406/0/0 | OCW | Check Mailing API | null | Retrieveallchecks | List all check records
Query parameters
perPage
Number of records that you want to receive in the response,By default 10 records will be
listed
page
For navigating through pages ,By default first page will be listed
term
Filter records by using any keywords
status
Filter records by using check status ,Eg:voided , mailed refundedemailedeprintedprinted
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/fb863703-62d7-432f-8e95-d9b377b03455/0/0 | OCW | Check Mailing API | null | Printchecks | You can print checks by passing check id and paper type,if you would like to print multiple checks you need to pass checkId as array.
Payload parameters
paperType
Required
Integer
Must be an integer from Available paper types
checkId
Required
Array
An Array of check id to print
Available paper types
Paper type
Description
1
Check on Top
2
Check on Middle
3
Check on Bottom
4
Three per page
5
Wallet size
6
Simple print
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/bf422489-0402-4a61-b348-b7b62a32008e/0/0 | OCW | Check Mailing API | null | Retrieveacheck | Details of an existing check.
Path parameters
checkId
Required
The id of the check to retrieved.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/1b379a48-c293-4fac-b28d-b6345afc2670/0/0 | OCW | Check Mailing API | null | RetrieveallCustomfromaddresses | List of all custom from address records.
Query parameters
perPage
Number of records that you want to receive in the response,By default 10 records will be
listed
page
For navigating through pages ,By default first page will be listed
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/8ed998a7-8593-443e-bdac-3a23851f0e0a/0/0 | OCW | Check Mailing API | null | Retrieveacustomtoaddress | Details of custom to address.
Path parameters
customToAddressId
Required
The id of the Custom to address to be retrieve.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/e2a09e57-6691-479d-9a0d-32affafa7503/0/0 | OCW | Check Mailing API | null | RetrieveallCustomtoaddresses | List of all custom to address records
Query parameters
perPage
Number of records that you want to receive in the response,By default 10 records will be
listed
page
For navigating through pages ,By default first page will be listed
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/1fad2d59-f136-43c2-bd0c-8eb5b6b611af/0/0 | OCW | Check Mailing API | null | Deleteacustomfromaddress | Permanently deletes a custom from address.
Path parameters
customFromAddressId
Required
The id of the Custom from address to be delete.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/b191ae36-7060-46ed-9090-a2851b19e979/0/0 | OCW | Check Mailing API | null | Deleteacheck | Permanently deletes a check.
Path parameters
checkId
Required
The id of the check to delete.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/b819a8a7-7f94-406f-a665-46f48fd01954/0/0 | OCW | Check Mailing API | null | DeleteaPayee | Permanently deletes a payee.
Path parameters
payeeId
Required
The id of the payee to delete
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/47cdf7d3-d6cf-461c-a198-5dddbd011252/0/0 | OCW | Check Mailing API | null | Retrieveallpayees | List all payee records.
Query parameters
perPage
Number of records that you want to receive in the response,By default 10 records will be
listed
page
For navigating through pages ,By default first page will be listed
term
Filter records by using any keywords
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/1e5088b7-4c39-4614-b5ea-c3da7b8d333b/0/0 | OCW | Check Mailing API | null | Retrieveapayee | Details of an existing payee.
Path parameters
payeeId
Required
The id of the payee to retrieve
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/fcebcb8d-9463-4cb9-9e22-65a1c9bc5611/0/0 | OCW | Check Mailing API | null | Retrieveacustomfromaddress | Details of custom from address.
Path parameters
customFromAddressId
Required
The id of the Custom from address to be retrieved.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/388ee1fe-f90f-4dbf-8ac4-663225ab532e/0/0 | OCW | Check Mailing API | null | CreateEmailCheck | You can create multiple Email check in one single request.
Payload parameters
emailChecks
Required
An array of emailCheck attributes
emailCheck attributes
checkId
Required
String
Must be a check ID
payeeEmail
Optional
String
Required if not exist any email on associated payee
enableSmsInform
Optional
Boolean
Notify your payee through SMS, By default false
payeePhone
Optional
String
Required if enableSmsInform is true and if not exist any phone on associated payee
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/52234b9c-326b-4104-a3e3-c331cdd50927/0/0 | OCW | Check Mailing API | null | CalculateFee | You can calculate check mail fees by using same mail creation payload parameters. | 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/91761d74-de03-4389-9d44-c06399644bcc/0/0 | OCW | Check Mailing API | null | Retrieveallattachmentsdetails | Retrieve all attachments of a existing check.
Path parameters
checkId
Required
The id of the check.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/b9c867e9-537c-4069-b82a-6344cb7bb397/1/0 | OCW | Check Mailing API | null | Addnewattachment | Add new attachment to existing check
Path parameters
checkId
Required
The id of the check.
Payload parameters
attachment
Required
File
File of type pdf,xls,xlsx,rtf,doc and docx
| 201 | null | {"success": true, "message": "Succesfully added", "data": {"checkAttachmentId": "RdJM5Gb3JeY329A", "checkId": "7rLdjvvqx2jJEz6", "fileName": "check_attachment_1603187841_OnlineCheckWriter.pdf", "fileNickName": 0, "pageCount": 0, "createdDate": "10-20-2020"}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "message": {"type": "string", "description": "", "default": "Succesfully added"}, "data": {"type": "object", "properties": {"checkAttachmentId": {"type": "string", "description": "", "default": "RdJM5Gb3JeY329A"}, "checkId": {"type": "string", "description": "", "default": "7rLdjvvqx2jJEz6"}, "fileName": {"type": "string", "description": "", "default": "check_attachment_1603187841_OnlineCheckWriter.pdf"}, "fileNickName": {"type": "integer", "description": "", "default": 1}, "pageCount": {"type": "integer", "description": "", "default": 1}, "createdDate": {"type": "string", "description": "", "default": "10-20-2020"}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/ad93bd67-f993-4b4d-8fc2-a7983e05b632/0/0 | OCW | Check Mailing API | null | Deleteaattachment | Remove attachment.
Path parameters
checkId
Required
The id of the check.
checkAttachmentId
Required
The id of the check attachment.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/c8208703-8d8f-483e-8d22-49cf95891746/0/0 | OCW | Check Mailing API | null | Deletemailattachment | Path parameters
checkId
Required
Id of the Check.
mailAttachmentId
Required
Id of the mail attachment.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/9b8b643d-cdc8-4af0-89a6-5008b8dc8825/0/0 | OCW | Check Mailing API | null | Retrieveallmailattachments | List of all mail attachments on a check,This attachments will include when create mail with this check.
Path parameters
checkId
Required
Id of the Check.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/d61d343f-fac2-477c-a0dc-ff55640ca6bb/0/0 | OCW | Check Mailing API | null | Retrieveallmailoptions | Retrieve all available mail options,including shipping types,Paper types and Inform types,You can use this data to create mail check. | 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/daa75707-d9ec-454a-97b0-dbe4b7bdddac/0/0 | OCW | Check Mailing API | null | Deletevoucher | Permanently deletes a voucher.
Path parameters
voucherId
Required
The id of the voucher to be delete.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/177e87ea-dfb9-496b-acab-abb0527a3eca/0/0 | OCW | Check Mailing API | null | AddLogo | Add logo to existing bank account
Path parameters
bankAccountId
Required
The id of the Bank account to update.
Payload parameters
logo
Required
File
Accepted file types are PNG,JPG and JPEG and must be no more than 40960Kb
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/7591babc-181a-41c4-be5a-da3e934c3724/0/0 | OCW | Check Mailing API | null | Retrievevoucher | Details of an existing voucher. It can be retrieve by passing checkId as well as retrieve directly by passing voucherId.
Path parameters
voucherId
Required
The id of the voucher to be retrieved.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/739b6111-dcf8-4171-ad5b-1dc473d55ee4/0/0 | OCW | Check Mailing API | null | GetStatus | 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
|
6c059953-689e-4e00-8456-78f25e2911f2/afd96b06-ae65-474c-899b-2f2f449eba1c/0/0 | OCW | Check Mailing API | null | Retrieveallbankaccounts | List all bank account records.
Query parameters
perPage
Number of records that you want to receive in the response,By default 10 records will be
listed
page
For navigating through pages ,By default first page will be listed
term
Filter records by using any keywords
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/332a6c81-165a-4d37-a7d0-1f307434c969/0/0 | OCW | Check Mailing API | null | AddSignature | Add signature to existing bank account
Path parameters
bankAccountId
Required
The id of the Bank account to update.
Payload parameters
signature
Required
File
Accepted file types are PNG,JPG and JPEG and must be no more than 40960Kb
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/4aa74493-409c-4d74-8d0f-ae72cc5854e1/0/0 | OCW | Check Mailing API | null | DeleteabankAccount | Delete an existing bank account.
Path parameters
bankAccountId
Required
The id of the Bank account to be deleted.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/38738da3-b71a-4087-b381-963b2b093148/0/0 | OCW | Check Mailing API | null | Retrieveabankaccount | Details of an existing bank account.
Path parameters
bankAccountId
Required
The id of the Bank account to be retrieved.
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/ffd2ad16-3d53-4c2a-a4f8-9fd08553bbdd/0/0 | OCW | Check Mailing API | null | GetAllstatus | 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
|
6c059953-689e-4e00-8456-78f25e2911f2/02291e10-4eb4-4510-9a69-71ad7ed83e1b/0/0 | OCW | Check Mailing API | null | RetrieveallCategories | List of all category records.
Query parameters
perPage
Number of records that you want to receive in the response,By default 10 records will be
listed
page
For navigating through pages ,By default first page will be listed
term
Filter records by using any keywords
| 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/5dc323b2-e90b-4293-bd60-1fd7af38ae6e/0/0 | OCW | Check Mailing API | null | CreateCategory | Create a category
Payload parameters
name
Required
String
Must be no longer than 50 characters.
type
Required
String
Must be either income or expense
| 201 | null | {"success": true, "message": "Succesfully added", "data": {"checkAttachmentId": "RdJM5Gb3JeY329A", "checkId": "7rLdjvvqx2jJEz6", "fileName": "check_attachment_1603187841_OnlineCheckWriter.pdf", "fileNickName": 0, "pageCount": 0, "createdDate": "10-20-2020"}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "message": {"type": "string", "description": "", "default": "Succesfully added"}, "data": {"type": "object", "properties": {"checkAttachmentId": {"type": "string", "description": "", "default": "RdJM5Gb3JeY329A"}, "checkId": {"type": "string", "description": "", "default": "7rLdjvvqx2jJEz6"}, "fileName": {"type": "string", "description": "", "default": "check_attachment_1603187841_OnlineCheckWriter.pdf"}, "fileNickName": {"type": "integer", "description": "", "default": 1}, "pageCount": {"type": "integer", "description": "", "default": 1}, "createdDate": {"type": "string", "description": "", "default": "10-20-2020"}}}}} |
6c059953-689e-4e00-8456-78f25e2911f2/4a541d05-3b26-4b88-b1d6-d5edd690c7db/1/0 | OCW | Check Mailing API | null | Updatecustomerbankaccount | 202 | null | {"success": true, "customer": {"id": "30aedb6c-5976-46e2-a229-030bc299bedb", "identity": "545654", "customerName": "Customer 1", "customerEmail": "[email protected]", "customerAdderessLine1": "95113 mark street rod", "customerPhone": "900244400", "customerCity": "Sanjose", "customerState": "CA", "customerZip": "95113", "bankAccounts": [], "createdAt": "2021-09-21T14:30:04.000000Z", "updatedAt": "2021-09-21T14:30:04.000000Z"}, "statusCode": 0} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "customer": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "30aedb6c-5976-46e2-a229-030bc299bedb"}, "identity": {"type": "string", "description": "", "default": "545654"}, "customerName": {"type": "string", "description": "", "default": "Customer 1"}, "customerEmail": {"type": "string", "description": "", "default": "[email protected]"}, "customerAdderessLine1": {"type": "string", "description": "", "default": "95113 mark street rod"}, "customerPhone": {"type": "string", "description": "", "default": "900244400"}, "customerCity": {"type": "string", "description": "", "default": "Sanjose"}, "customerState": {"type": "string", "description": "", "default": "CA"}, "customerZip": {"type": "string", "description": "", "default": "95113"}, "bankAccounts": {"type": "array", "items": {"type": "array", "items": {}}}, "createdAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}, "updatedAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}}}, "statusCode": {"type": "integer", "description": "", "default": 202}}} |
|
6c059953-689e-4e00-8456-78f25e2911f2/132b12c1-079a-465d-89c3-409577fc9957/0/0 | OCW | Check Mailing API | null | Retrievecustomerbankaccount | Retrieve customer bank account | 202 | null | {"success": true, "customer": {"id": "30aedb6c-5976-46e2-a229-030bc299bedb", "identity": "545654", "customerName": "Customer 1", "customerEmail": "[email protected]", "customerAdderessLine1": "95113 mark street rod", "customerPhone": "900244400", "customerCity": "Sanjose", "customerState": "CA", "customerZip": "95113", "bankAccounts": [], "createdAt": "2021-09-21T14:30:04.000000Z", "updatedAt": "2021-09-21T14:30:04.000000Z"}, "statusCode": 0} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "customer": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "30aedb6c-5976-46e2-a229-030bc299bedb"}, "identity": {"type": "string", "description": "", "default": "545654"}, "customerName": {"type": "string", "description": "", "default": "Customer 1"}, "customerEmail": {"type": "string", "description": "", "default": "[email protected]"}, "customerAdderessLine1": {"type": "string", "description": "", "default": "95113 mark street rod"}, "customerPhone": {"type": "string", "description": "", "default": "900244400"}, "customerCity": {"type": "string", "description": "", "default": "Sanjose"}, "customerState": {"type": "string", "description": "", "default": "CA"}, "customerZip": {"type": "string", "description": "", "default": "95113"}, "bankAccounts": {"type": "array", "items": {"type": "array", "items": {}}}, "createdAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}, "updatedAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}}}, "statusCode": {"type": "integer", "description": "", "default": 202}}} |
6c059953-689e-4e00-8456-78f25e2911f2/3bb31319-1901-41fb-80c0-e17c4aa24b29/1/0 | OCW | Check Mailing API | null | GetCustomerDetails | 202 | null | {"success": true, "customer": {"id": "30aedb6c-5976-46e2-a229-030bc299bedb", "identity": "545654", "customerName": "Customer 1", "customerEmail": "[email protected]", "customerAdderessLine1": "95113 mark street rod", "customerPhone": "900244400", "customerCity": "Sanjose", "customerState": "CA", "customerZip": "95113", "bankAccounts": [], "createdAt": "2021-09-21T14:30:04.000000Z", "updatedAt": "2021-09-21T14:30:04.000000Z"}, "statusCode": 0} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "customer": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "30aedb6c-5976-46e2-a229-030bc299bedb"}, "identity": {"type": "string", "description": "", "default": "545654"}, "customerName": {"type": "string", "description": "", "default": "Customer 1"}, "customerEmail": {"type": "string", "description": "", "default": "[email protected]"}, "customerAdderessLine1": {"type": "string", "description": "", "default": "95113 mark street rod"}, "customerPhone": {"type": "string", "description": "", "default": "900244400"}, "customerCity": {"type": "string", "description": "", "default": "Sanjose"}, "customerState": {"type": "string", "description": "", "default": "CA"}, "customerZip": {"type": "string", "description": "", "default": "95113"}, "bankAccounts": {"type": "array", "items": {"type": "array", "items": {}}}, "createdAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}, "updatedAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}}}, "statusCode": {"type": "integer", "description": "", "default": 202}}} |
|
6c059953-689e-4e00-8456-78f25e2911f2/41113219-b829-4846-b028-d8705efe825a/0/0 | OCW | Check Mailing API | null | Createcustomerbankaccount | Create Customer Bank Account | 202 | null | {"success": true, "customer": {"id": "30aedb6c-5976-46e2-a229-030bc299bedb", "identity": "545654", "customerName": "Customer 1", "customerEmail": "[email protected]", "customerAdderessLine1": "95113 mark street rod", "customerPhone": "900244400", "customerCity": "Sanjose", "customerState": "CA", "customerZip": "95113", "bankAccounts": [], "createdAt": "2021-09-21T14:30:04.000000Z", "updatedAt": "2021-09-21T14:30:04.000000Z"}, "statusCode": 0} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "customer": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "30aedb6c-5976-46e2-a229-030bc299bedb"}, "identity": {"type": "string", "description": "", "default": "545654"}, "customerName": {"type": "string", "description": "", "default": "Customer 1"}, "customerEmail": {"type": "string", "description": "", "default": "[email protected]"}, "customerAdderessLine1": {"type": "string", "description": "", "default": "95113 mark street rod"}, "customerPhone": {"type": "string", "description": "", "default": "900244400"}, "customerCity": {"type": "string", "description": "", "default": "Sanjose"}, "customerState": {"type": "string", "description": "", "default": "CA"}, "customerZip": {"type": "string", "description": "", "default": "95113"}, "bankAccounts": {"type": "array", "items": {"type": "array", "items": {}}}, "createdAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}, "updatedAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}}}, "statusCode": {"type": "integer", "description": "", "default": 202}}} |
6c059953-689e-4e00-8456-78f25e2911f2/7f338e34-c6d3-4b1a-9504-16e914e30dd4/0/0 | OCW | Check Mailing API | null | Updatecustomer | 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
|
6c059953-689e-4e00-8456-78f25e2911f2/eaef5fbe-f9c7-4e7b-9036-c98824ac9727/0/0 | OCW | Check Mailing API | null | Createcustomer | 202 | null | {"success": true, "customer": {"id": "30aedb6c-5976-46e2-a229-030bc299bedb", "identity": "545654", "customerName": "Customer 1", "customerEmail": "[email protected]", "customerAdderessLine1": "95113 mark street rod", "customerPhone": "900244400", "customerCity": "Sanjose", "customerState": "CA", "customerZip": "95113", "bankAccounts": [], "createdAt": "2021-09-21T14:30:04.000000Z", "updatedAt": "2021-09-21T14:30:04.000000Z"}, "statusCode": 0} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "customer": {"type": "object", "properties": {"id": {"type": "string", "description": "", "default": "30aedb6c-5976-46e2-a229-030bc299bedb"}, "identity": {"type": "string", "description": "", "default": "545654"}, "customerName": {"type": "string", "description": "", "default": "Customer 1"}, "customerEmail": {"type": "string", "description": "", "default": "[email protected]"}, "customerAdderessLine1": {"type": "string", "description": "", "default": "95113 mark street rod"}, "customerPhone": {"type": "string", "description": "", "default": "900244400"}, "customerCity": {"type": "string", "description": "", "default": "Sanjose"}, "customerState": {"type": "string", "description": "", "default": "CA"}, "customerZip": {"type": "string", "description": "", "default": "95113"}, "bankAccounts": {"type": "array", "items": {"type": "array", "items": {}}}, "createdAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}, "updatedAt": {"type": "string", "description": "", "default": "2021-09-21T14:30:04.000000Z"}}}, "statusCode": {"type": "integer", "description": "", "default": 202}}} |
|
6c059953-689e-4e00-8456-78f25e2911f2/abb12345-5755-4760-be7a-1dba1e88364a/0/0 | OCW | Check Mailing API | null | GetAllshortUrl | 200 | null | {"success": true, "data": {"meta": {"total": 0, "currentPage": 0, "perPage": 0}, "bankAccounts": [{"bankAccountId": "yd6LeMYmdQeE8Dx", "name": "Demo Bank Account 1", "nickName": "Demo Nick Name", "accountNumber": "1111111111", "bankId": "BQPA4m3pKae7gxq", "addressLine1": "Test Address Line 1", "addressLine2": "Test Address Line 2", "city": "Sanjose", "state": "CA", "zip": "95113", "phone": "900244400", "createdDate": "01-01-1970"}]}} | {"type": "object", "properties": {"success": {"type": "boolean", "description": "", "default": true}, "data": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"total": {"type": "integer", "description": "", "default": 2}, "currentPage": {"type": "integer", "description": "", "default": 1}, "perPage": {"type": "integer", "description": "", "default": 10}}}, "bankAccounts": {"type": "array", "items": {"type": "object", "properties": {"bankAccountId": {"type": "string", "description": "", "default": "yd6LeMYmdQeE8Dx"}, "name": {"type": "string", "description": "", "default": "Demo Bank Account 1"}, "nickName": {"type": "string", "description": "", "default": "Demo Nick Name"}, "accountNumber": {"type": "string", "description": "", "default": "1111111111"}, "isVerified": {}, "bankId": {"type": "string", "description": "", "default": "BQPA4m3pKae7gxq"}, "addressLine1": {"type": "string", "description": "", "default": "Test Address Line 1"}, "addressLine2": {"type": "string", "description": "", "default": "Test Address Line 2"}, "city": {"type": "string", "description": "", "default": "Sanjose"}, "state": {"type": "string", "description": "", "default": "CA"}, "zip": {"type": "string", "description": "", "default": "95113"}, "phone": {"type": "string", "description": "", "default": "900244400"}, "createdDate": {"type": "string", "description": "", "default": "01-01-1970"}}}}}}}} |
|
e8d32c4b-0925-4a7b-baee-25a3da416df0/89db03a2-8475-42ba-893b-c923bd6ab6c2/1/0 | Crypto Address Validation API | Easily validate wallet addresses for the major cryptocurrency networks. | null | Validate | This endpoint validates the provided address, against the chosen network. The response will tell you if the string you provided is a valid wallet address for a specific network.
Supported networks:
Bitcoin - btc
Ethereum - eth
Monero - xmr
Litecoin - ltc
Cardano - ada
Neo - neo
| 200 | Example_1 | {"network": "btc", "address": "", "valid": true} | {"type": "object", "description": "Used only for Schema generation.", "properties": {"network": {"enum": ["btc", "eth", "xmr", "ltc", "ada", "neo"], "type": "string", "description": "* `btc` - btc\n* `eth` - eth\n* `xmr` - xmr\n* `ltc` - ltc\n* `ada` - ada\n* `neo` - neo"}, "address": {"type": "string", "maxLength": 200, "minLength": 0}, "valid": {"type": "boolean"}}, "required": ["address", "network", "valid"]} |
ac01e6f8-f6ca-4b07-b85e-5c5615da19e4/5038582f-9a85-46e9-b3f4-00e9b278c1be/0/0 | cryptoStats | This API will show LIVE stats about the top 10 crypto-currencies in the market | null | Get all stats for the crypto-currencies | This endpoint will return all the live stats about the crypto-currencies | 200 | Response | [{"cryptoName": "Bitcoin", "price": "$37,950.90", "marketCap": "$719,119,185,349", "volume": "$20,618,585,628", "circulatingSupply": "18,948,675 BTC", "graph": "https://s3.coinmarketcap.com/generated/sparklines/web/7d/2781/1.svg", "cryptoLogo": "https://s2.coinmarketcap.com/static/img/coins/64x64/1.png"}, {"cryptoName": "Ethereu", "price": "$2,838.21", "marketCap": "$338,998,231,137", "volume": "$14,911,509,373", "circulatingSupply": "119,440,895 ETH", "graph": "https://s3.coinmarketcap.com/generated/sparklines/web/7d/2781/1027.svg", "cryptoLogo": "https://s2.coinmarketcap.com/static/img/coins/64x64/1027.png"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"cryptoName": {"type": "string"}, "price": {"type": "string"}, "marketCap": {"type": "string"}, "volume": {"type": "string"}, "circulatingSupply": {"type": "string"}, "graph": {"type": "string"}, "cryptoLogo": {"type": "string"}}, "required": ["circulatingSupply", "cryptoLogo", "cryptoName", "graph", "marketCap", "price", "volume"]}} |
1737c908-0d9f-44a4-9785-9ae6198a1fed/18cae626-1071-45ad-81bd-b4c01f7642f4/0/0 | Stock Analysis | Get the Best Analysis for Any Stock. Get started for Free! | null | Get Price | This endpoint retrieves the current stock price for a specified stock symbol.
It allows users to quickly obtain the latest market value of a particular stock, facilitating real-time decision-making. | 200 | Response | {"symbol": "GOOGL", "price": 119.699997} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"symbol": {"type": "string"}, "price": {"type": "number"}}, "required": ["price", "symbol"]} |
1737c908-0d9f-44a4-9785-9ae6198a1fed/97f3b84c-d2b8-4926-96eb-fd5b00a96157/0/0 | Stock Analysis | Get the Best Analysis for Any Stock. Get started for Free! | null | Get Technical Indicators |
This endpoint calculates popular technical indicators for a specified stock symbol.
It provides insights into the stock's performance based on indicators such as Simple Moving Average (SMA), Relative Strength Index (RSI), etc.
The indicators help identify trends, potential entry or exit points, and make informed trading decisions.
| 200 | Response | {"symbol": "GOOGL", "indicators": {"sma20": "91.88", "sma50": "93.94", "rsi14": "63.15"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"symbol": {"type": "string"}, "indicators": {"type": "object", "properties": {"sma20": {"type": "string"}, "sma50": {"type": "string"}, "rsi14": {"type": "string"}}, "required": ["rsi14", "sma20", "sma50"]}}, "required": ["indicators", "symbol"]} |
52edc13a-134f-4129-9e77-98b13b2fd01d/95400a02-c398-4914-beda-95a2860ba2ab/0/0 | Market Fluent Value Investing Research UK | Integrating Market Fluent's database into your own application is now easy! Its is ideal for investors looking for companies that meet specific criteria of value investing, based on the time-tested methods of Graham and Dodd. We provide high quality database, updated every 24 hours, contains over 4000 companies across Europe and North American. With more added all the time. | null | All companies listed | Currently, we have over 4000 companies that have been reviewed and assessed using the principles set out by Ben Graham in The Intelligent Investor.
The return will include Ticker (GENERAL_CODE) and Company name (GENERAL_NAME). The ticker is used to find a company full report. Also, you can is if the company you are interested in, is part of the database. | 200 | List All | [{"General_Code": "ACA", "General_Name": "Cr\u00e9dit Agricole S.A"}, {"General_Code": "BNP", "General_Name": "BNP Paribas SA"}, {"General_Code": "DG", "General_Name": "VINCI SA"}, {"General_Code": "EDF", "General_Name": "Electricit\u00e9 de France S.A"}, {"General_Code": "COV", "General_Name": "Covivio"}, {"General_Code": "FR", "General_Name": "Valeo SE"}, {"General_Code": "GLE", "General_Name": "Soci\u00e9t\u00e9 G\u00e9n\u00e9rale Soci\u00e9t\u00e9 anonyme"}, {"General_Code": "ENGI", "General_Name": "ENGIE SA"}, {"General_Code": "ICAD", "General_Name": "Icade SA"}, {"General_Code": "LOCAL", "General_Name": "Solocal Group S.A"}, {"General_Code": "MMB", "General_Name": "Lagardere SA"}, {"General_Code": "MMT", "General_Name": "M\u00e9tropole T\u00e9l\u00e9vision S.A"}, {"General_Code": "ORA", "General_Name": "Orange S.A"}, {"General_Code": "RNO", "General_Name": "Renault SA"}, {"General_Code": "SAN", "General_Name": "Sanofi"}, {"General_Code": "SCR", "General_Name": "SCOR SE"}, {"General_Code": "SU", "General_Name": "Schneider Electric S.E"}, {"General_Code": "VIE", "General_Name": "Veolia Environnement S.A"}, {"General_Code": "VIV", "General_Name": "Vivendi SE"}, {"General_Code": "OR", "General_Name": "L'Or\u00e9al S.A."}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"General_Code": {"type": "string"}, "General_Name": {"type": "string"}}, "required": ["General_Code", "General_Name"]}} |
52edc13a-134f-4129-9e77-98b13b2fd01d/5db9c777-632a-4fd2-b41e-d7ddf80826d7/0/0 | Market Fluent Value Investing Research UK | Integrating Market Fluent's database into your own application is now easy! Its is ideal for investors looking for companies that meet specific criteria of value investing, based on the time-tested methods of Graham and Dodd. We provide high quality database, updated every 24 hours, contains over 4000 companies across Europe and North American. With more added all the time. | null | List of UK Companies | This list contains all the UK companies we currently hold in our database. We update our database every month.
The return will include Ticker (GENERAL_CODE) and Company name (GENERAL_NAME). The ticker is used to find a company full report. Also, you can is if the company you are interested in, is part of the database. | 200 | New Example | [{"General_Code": "ADM", "General_Name": "Admiral Group plc"}, {"General_Code": "AZN", "General_Name": "AstraZeneca PLC"}, {"General_Code": "BAB", "General_Name": "Babcock International Group PLC"}, {"General_Code": "BATS", "General_Name": "British American Tobacco p.l.c"}, {"General_Code": "BEZ", "General_Name": "Beazley plc"}, {"General_Code": "BKG", "General_Name": "The Berkeley Group Holdings plc"}, {"General_Code": "BMY", "General_Name": "Bloomsbury Publishing Plc"}, {"General_Code": "BLND", "General_Name": "British Land Company Plc"}, {"General_Code": "BP", "General_Name": "BP p.l.c"}, {"General_Code": "3IN", "General_Name": "3i Infrastructure plc"}] | {"type": "array", "items": {"type": "object", "properties": {"General_Code": {"type": "string"}, "General_Name": {"type": "string"}}}} |
bfb1db94-9db8-45df-9551-37aa3af1c3e7/1481609f-0af3-4859-8bef-59b8f1e02fbd/0/0 | Crypto address validator | Using this API you can check if crypto address is valid or not. | null | isCurrencyValidatable | Check if currency exist in a validation list | 200 | Example_1 | {"validatable": true, "message": ""} | {"type": "object", "properties": {"validatable": {"type": "boolean"}, "message": {"type": "string"}}} |
bfb1db94-9db8-45df-9551-37aa3af1c3e7/30656c71-e539-45a0-8d6e-1a5bbc8389f8/0/0 | Crypto address validator | Using this API you can check if crypto address is valid or not. | null | isAddressValid | Check if address is valid | 200 | Example_1 | {"valid": true, "message": "Address is valid"} | {"type": "object", "properties": {"valid": {"type": "boolean"}, "message": {"type": "string"}}} |
bfb1db94-9db8-45df-9551-37aa3af1c3e7/0653dcb8-e07c-4b40-84c6-73a88718534b/0/0 | Crypto address validator | Using this API you can check if crypto address is valid or not. | null | getValidatableCurrencyList | Get validatable currencies | 200 | Example_1 | [{"name": "Bitcoin", "symbol": "btc"}] | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}}}} |
647d8f89-8f6a-4386-a46c-e91c58b511f9/b0b8a698-fb34-4b4e-aa9a-d3446c13fa5a/0/0 | NSE BSE listed companies Financial Data | This API provide financial data information like Balance Sheet, Profit & Loss Satatement, Quarterly Statement, Cash Flows, Ratios. | null | Profit & Loss | Profit & Loss | 200 | New Example | {"period": ["Mar 2012", "Mar 2013", "Mar 2014", "Mar 2015", "Mar 2016", "Mar 2017", "Mar 2018", "Mar 2019", "Mar 2020", "Mar 2021", "Mar 2022", "Mar 2023"], "ttm": [], "sales": ["7025", "2348", "28537", "32502", "34094", "36663", "45524", "38644", "35858", "37440", "63277", "68080", "66074"], "expenses": ["4519", "2006", "26440", "27873", "45424", "29990", "39049", "33097", "29954", "28752", "45599", "58619", "57731"], "operating_profit": ["2507", "342", "2096", "4630", "-11329", "6673", "6475", "5547", "5904", "8688", "17678", "9461", "8343"], "opm": ["36%", "15%", "7%", "14%", "-33%", "18%", "14%", "14%", "16%", "23%", "28%", "14%", "13%"], "other_income": ["418", "332", "1902", "2005", "1457", "11007", "8944", "6400", "-9775", "10688", "8029", "25594", "29275"], "interest": ["420", "469", "3565", "3656", "3600", "3896", "3353", "3757", "3328", "3193", "3146", "4384", "4861"], "depreciation": ["84", "148", "1505", "1012", "4287", "2986", "2842", "3243", "3264", "2519", "2945", "3661", "3687"], "profit_before_tax": ["2421", "57", "-1072", "1967", "-17760", "10798", "9224", "4947", "-10463", "13664", "19616", "27010", "29070"], "tax": ["31%", "-112%", "200%", "2%", "33%", "-3%", "21%", "-3%", "36%", "23%", "12%", "-1%", ""], "net_profit": ["1680", "121", "1076", "1927", "-11906", "11069", "7256", "5075", "-6732", "10503", "17245", "27356", "29090"], "eps_in_rs": ["19.33", "1.39", "3.63", "6.50", "-40.16", "37.34", "19.52", "13.65", "-18.11", "28.26", "46.39", "73.59", "78.26"], "dividend_payout": ["21%", "7%", "90%", "63%", "-9%", "52%", "109%", "138%", "-22%", "34%", "97%", "138%", ""]} | {"type": "object", "properties": {"period": {"type": "array", "items": {"type": "string"}}, "ttm": {"type": "array"}, "sales": {"type": "array", "items": {"type": "string"}}, "expenses": {"type": "array", "items": {"type": "string"}}, "operating_profit": {"type": "array", "items": {"type": "string"}}, "opm": {"type": "array", "items": {"type": "string"}}, "other_income": {"type": "array", "items": {"type": "string"}}, "interest": {"type": "array", "items": {"type": "string"}}, "depreciation": {"type": "array", "items": {"type": "string"}}, "profit_before_tax": {"type": "array", "items": {"type": "string"}}, "tax": {"type": "array", "items": {"type": "string"}}, "net_profit": {"type": "array", "items": {"type": "string"}}, "eps_in_rs": {"type": "array", "items": {"type": "string"}}, "dividend_payout": {"type": "array", "items": {"type": "string"}}}} |
647d8f89-8f6a-4386-a46c-e91c58b511f9/ad5b2b86-2059-4e09-9180-971a11757486/0/0 | NSE BSE listed companies Financial Data | This API provide financial data information like Balance Sheet, Profit & Loss Satatement, Quarterly Statement, Cash Flows, Ratios. | null | Ratios | Ratios | 200 | New Example | {"period": ["Mar 2012", "Mar 2013", "Mar 2014", "Mar 2015", "Mar 2016", "Mar 2017", "Mar 2018", "Mar 2019", "Mar 2020", "Mar 2021", "Mar 2022", "Mar 2023"], "debtor_days": ["24", "22", "17", "13", "21", "15", "16", "19", "8", "11", "13", "9"], "inventory_days": ["280", "2215", "114", "99", "106", "107", "116", "171", "147", "142", "136", "106"], "days_payable": ["272", "716", "49", "52", "273", "288", "200", "252", "274", "252", "234", "208"], "cash_conversion_cycle": ["31", "1521", "81", "60", "-146", "-166", "-69", "-62", "-119", "-98", "-85", "-93"], "working_capital_days": ["14", "121", "-89", "-8", "-453", "-249", "-122", "-162", "-189", "-103", "-46", "-120"], "roce": ["19%", "3%", "5%", "8%", "-6%", "10%", "5%", "7%", "5%", "16%", "21%"]} | {"type": "object", "properties": {"period": {"type": "array", "items": {"type": "string"}}, "debtor_days": {"type": "array", "items": {"type": "string"}}, "inventory_days": {"type": "array", "items": {"type": "string"}}, "days_payable": {"type": "array", "items": {"type": "string"}}, "cash_conversion_cycle": {"type": "array", "items": {"type": "string"}}, "working_capital_days": {"type": "array", "items": {"type": "string"}}, "roce": {"type": "array", "items": {"type": "string"}}}} |
647d8f89-8f6a-4386-a46c-e91c58b511f9/319922eb-5a90-446f-b422-4423a507e0cb/0/0 | NSE BSE listed companies Financial Data | This API provide financial data information like Balance Sheet, Profit & Loss Satatement, Quarterly Statement, Cash Flows, Ratios. | null | Cash Flows | Cash Flows | 200 | New Example | {"period": ["Mar 2012", "Mar 2013", "Mar 2014", "Mar 2015", "Mar 2016", "Mar 2017", "Mar 2018", "Mar 2019", "Mar 2020", "Mar 2021", "Mar 2022", "Mar 2023"], "cash_from_operating_activity": ["1539", "-128", "2832", "4240", "9845", "8139", "2740", "7699", "7199", "6047", "12564", "12491"], "cash_from_investing_activity": ["-4035", "-303", "-232", "1878", "-7422", "-13606", "21033", "3954", "887", "8768", "6408", "16312"], "cash_from_financing_activity": ["1693", "394", "-506", "-6194", "-1223", "4817", "-23545", "-9600", "-9449", "-13800", "-16315", "-29174"], "net_cash_flow": ["-804", "-38", "2095", "-76", "1200", "-650", "228", "2053", "-1363", "1015", "2657"]} | {"type": "object", "properties": {"period": {"type": "array", "items": {"type": "string"}}, "cash_from_operating_activity": {"type": "array", "items": {"type": "string"}}, "cash_from_investing_activity": {"type": "array", "items": {"type": "string"}}, "cash_from_financing_activity": {"type": "array", "items": {"type": "string"}}, "net_cash_flow": {"type": "array", "items": {"type": "string"}}}} |
647d8f89-8f6a-4386-a46c-e91c58b511f9/a96fcf9a-53d3-4090-92d5-c5c96ff20f32/0/0 | NSE BSE listed companies Financial Data | This API provide financial data information like Balance Sheet, Profit & Loss Satatement, Quarterly Statement, Cash Flows, Ratios. | null | Balance Sheet | Balance Sheet | 200 | New Example | {"period": ["Mar 2012", "Mar 2013", "Mar 2014", "Mar 2015", "Mar 2016", "Mar 2017", "Mar 2018", "Mar 2019", "Mar 2020", "Mar 2021", "Mar 2022", "Mar 2023"], "share_capital": ["87", "87", "296", "296", "372", "372", "372", "374", "374", "372", "372", "372"], "reserves": ["12826", "12937", "33382", "33761", "78866", "79396", "78941", "77508", "69523", "76418", "77277", "67440"], "borrowings": ["3599", "4831", "38943", "37644", "33468", "43233", "40713", "42202", "38935", "32299", "36778", "42120"], "other_liabilities": ["1326", "580", "10868", "6833", "69994", "43258", "27143", "30785", "30620", "28642", "34314", "48851"], "total_liabilities": ["17838", "18435", "83490", "78534", "182624", "166184", "147169", "150867", "139450", "137731", "148741", "158783"], "fixed_assets": ["993", "1555", "22584", "22126", "32039", "35065", "35747", "35525", "35457", "36768", "37211", "38348"], "cwip": ["681", "363", "17327", "17422", "21158", "17243", "18369", "15731", "12086", "10701", "10714", "12184"], "investments": ["14421", "14694", "22767", "26465", "101047", "86085", "68010", "68582", "62905", "62903", "61466", "64845"], "other_assets": ["1743", "1824", "20811", "12522", "28381", "27791", "25043", "31029", "29002", "27359", "39350", "43406"], "total_assets": ["17838", "18435", "83490", "78534", "182624", "166184", "147169", "150867", "139450", "137731", "148741"]} | {"type": "object", "properties": {"period": {"type": "array", "items": {"type": "string"}}, "share_capital": {"type": "array", "items": {"type": "string"}}, "reserves": {"type": "array", "items": {"type": "string"}}, "borrowings": {"type": "array", "items": {"type": "string"}}, "other_liabilities": {"type": "array", "items": {"type": "string"}}, "total_liabilities": {"type": "array", "items": {"type": "string"}}, "fixed_assets": {"type": "array", "items": {"type": "string"}}, "cwip": {"type": "array", "items": {"type": "string"}}, "investments": {"type": "array", "items": {"type": "string"}}, "other_assets": {"type": "array", "items": {"type": "string"}}, "total_assets": {"type": "array", "items": {"type": "string"}}}} |
647d8f89-8f6a-4386-a46c-e91c58b511f9/67c7683f-fc24-4e93-8b42-492c0b9f0b81/0/0 | NSE BSE listed companies Financial Data | This API provide financial data information like Balance Sheet, Profit & Loss Satatement, Quarterly Statement, Cash Flows, Ratios. | null | Quarterly Results | Quarterly Results | 200 | New Example | {"period": ["Jun 2020", "Sep 2020", "Dec 2020", "Mar 2021", "Jun 2021", "Sep 2021", "Dec 2021", "Mar 2022", "Jun 2022", "Sep 2022", "Dec 2022", "Mar 2023", "Jun 2023"], "sales": ["6782", "8606", "9661", "12391", "12958", "15123", "16187", "19009", "17913", "16998", "15832", "17337", "15907"], "expenses": ["5578", "6689", "7184", "9329", "9190", "10382", "12354", "13769", "15016", "15133", "13888", "14603", "14107"], "operating_profit": ["1204", "1917", "2477", "3062", "3768", "4741", "3833", "5240", "2897", "1865", "1944", "2734", "1800"], "opm": ["18%", "22%", "26%", "25%", "29%", "31%", "24%", "28%", "16%", "11%", "12%", "16%", "11%"], "other_income": ["4726", "115", "6015", "-140", "1399", "639", "4965", "1122", "174", "6391", "4880", "14188", "3816"], "interest": ["800", "824", "756", "813", "722", "716", "840", "868", "858", "1057", "1197", "1272", "1335"], "depreciation": ["596", "636", "633", "654", "704", "727", "772", "742", "873", "950", "1040", "816", "881"], "profit_before_tax": ["4534", "572", "7103", "1455", "3741", "3937", "7186", "4752", "1340", "6249", "4587", "14834", "3400"], "tax": ["35%", "34%", "19%", "1%", "11%", "17%", "10%", "13%", "-25%", "2%", "-2%", "-0%", "-0%"], "net_profit": ["2964", "378", "5720", "1441", "3336", "3279", "6473", "4157", "1674", "6126", "4684", "14872", "3408"], "eps_in_rs": ["7.97", "1.02", "15.39", "3.88", "8.97", "8.82", "17.41", "11.18", "4.50", "16.48", "12.60", "40.01", "9.17"]} | {"type": "object", "properties": {"period": {"type": "array", "items": {"type": "string"}}, "sales": {"type": "array", "items": {"type": "string"}}, "expenses": {"type": "array", "items": {"type": "string"}}, "operating_profit": {"type": "array", "items": {"type": "string"}}, "opm": {"type": "array", "items": {"type": "string"}}, "other_income": {"type": "array", "items": {"type": "string"}}, "interest": {"type": "array", "items": {"type": "string"}}, "depreciation": {"type": "array", "items": {"type": "string"}}, "profit_before_tax": {"type": "array", "items": {"type": "string"}}, "tax": {"type": "array", "items": {"type": "string"}}, "net_profit": {"type": "array", "items": {"type": "string"}}, "eps_in_rs": {"type": "array", "items": {"type": "string"}}}} |
5410ebc6-3b71-4d0a-a108-5989317e060f/3de59f0d-25ea-4b50-bc3c-a282a0bc980b/0/0 | CurrencyAPI.net | Real-time currency conversion on 152 currencies and cryptos | 9.7 | Rates | Get live currency conversion rates of a given currency | 400 | Api Key not valid | {"error": {"code": 401, "message": "Your API key is not valid"}, "valid": false} | {"properties": {"error": {"properties": {"code": {"type": "integer"}, "message": {"type": "string"}}, "type": "object"}, "valid": {"type": "boolean"}}, "type": "object"} |
5410ebc6-3b71-4d0a-a108-5989317e060f/3de59f0d-25ea-4b50-bc3c-a282a0bc980b/1/0 | CurrencyAPI.net | Real-time currency conversion on 152 currencies and cryptos | 9.7 | Rates | Get live currency conversion rates of a given currency | 200 | Rates Response | {"base": "USD", "rates": {"AED": 3.67303, "AFN": 78.2669, "ALL": 100.65313, "AMD": 522.325, "ANG": 1.79472, "AOA": 655.31575, "ARS": 84.02231, "AUD": 1.31348, "AWG": 1.8, "AZN": 1.7, "BAM": 1.5966, "BBD": 2.01879, "BCH": 0.0029104455892197097, "BDT": 84.79156, "BGN": 1.5953, "BHD": 0.37705, "BIF": 1939.59395, "BMD": 1, "BND": 1.32749, "BOB": 6.88386, "BRL": 5.19794, "BSD": 0.99981, "BTC": 3.757480203715546e-05, "BTG": 0.12453300124533002, "BWP": 10.80913, "BZD": 2.01538, "CAD": 1.28021, "CDF": 1976.1, "CHF": 0.88447, "CLP": 712.48, "CNH": 6.51854, "CNY": 6.5177, "COP": 3478.675, "CRC": 609.30497, "CUC": 1, "CUP": 0, "CVE": 90.01234, "CZK": 21.45305, "DASH": 0.009880446596186148, "DJF": 178.0002, "DKK": 6.0639, "DOP": 58.08061, "DZD": 132.09211, "EGP": 15.72969, "EOS": 0.39231071008238527, "ETB": 39.30437, "ETH": 0.0013875783981794972, "EUR": 0.81593, "FJD": 2.0481, "GBP": 0.74086, "GEL": 3.28, "GHS": 5.85919, "GIP": 0.74086, "GMD": 51.7725, "GNF": 9993.64265, "GTQ": 7.79384, "GYD": 208.82604, "HKD": 7.7536, "HNL": 24.10902, "HRK": 6.15451, "HTG": 72.08216, "HUF": 297.34, "IDR": 14144.457, "ILS": 3.2129, "INR": 73.33777, "IQD": 1460.75405, "IRR": 42107.1, "ISK": 127.5165, "JMD": 142.97585, "JOD": 0.70905, "JPY": 103.529, "KES": 109.0555, "KGS": 82.84024, "KHR": 4027.36735, "KMF": 402.57, "KRW": 1093.4445, "KWD": 0.30532, "KYD": 0.8332, "KZT": 420.78414, "LAK": 9288.5164, "LBP": 1511.7886, "LKR": 187.9718, "LRD": 163.258, "LSL": 14.6105, "LTC": 0.00799552250739586, "LYD": 1.33943, "MAD": 8.92948, "MDL": 17.24769, "MKD": 50.29802, "MMK": 1329.8005, "MOP": 7.9842, "MUR": 39.452, "MVR": 15.4, "MWK": 766.75484, "MXN": 19.9891, "MYR": 4.05071, "MZN": 74.8935, "NAD": 14.6105, "NGN": 381.22, "NIO": 34.84518, "NOK": 8.6027, "NPR": 117.42837, "NZD": 1.39691, "OMR": 0.38498, "PAB": 0.99981, "PEN": 3.61744, "PGK": 3.55562, "PHP": 48.0504, "PKR": 160.57463, "PLN": 3.7043, "PYG": 6732.92965, "QAR": 3.64143, "RON": 3.9775, "RSD": 95.915, "RUB": 73.7118, "RWF": 990.68693, "SAR": 3.75288, "SBD": 8.01801, "SCR": 21.20685, "SDG": 55.27775, "SEK": 8.184, "SGD": 1.32721, "SLL": 10095.5, "SOS": 582.05, "SRD": 14.1547, "SVC": 8.74845, "SZL": 14.65879, "THB": 30.05501, "TJS": 11.32597, "TMT": 3.5, "TND": 2.69164, "TOP": 2.28246, "TRY": 7.3772, "TTD": 6.78991, "TWD": 28.09581, "TZS": 2318.63095, "UAH": 28.19146, "UGX": 3644.4932, "USD": 1, "UYU": 42.23785, "UZS": 10475.5, "VND": 23124.655, "XAF": 535.46687, "XAG": 0.038166482195336054, "XAU": 0.0005322064748239727, "XCD": 2.70269, "XLM": 7.541478129713424, "XOF": 535.47567, "XRP": 5.4945054945054945, "YER": 250.3625, "ZAR": 14.6825, "ZMW": 21.15935}, "updated": 1609256822, "valid": true} | {"properties": {"base": {"type": "string"}, "rates": {"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"}, "BCH": {"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"}, "BTG": {"type": "number"}, "BWP": {"type": "number"}, "BZD": {"type": "number"}, "CAD": {"type": "number"}, "CDF": {"type": "number"}, "CHF": {"type": "number"}, "CLP": {"type": "number"}, "CNH": {"type": "number"}, "CNY": {"type": "number"}, "COP": {"type": "number"}, "CRC": {"type": "number"}, "CUC": {"type": "integer"}, "CUP": {"type": "integer"}, "CVE": {"type": "number"}, "CZK": {"type": "number"}, "DASH": {"type": "number"}, "DJF": {"type": "number"}, "DKK": {"type": "number"}, "DOP": {"type": "number"}, "DZD": {"type": "number"}, "EGP": {"type": "number"}, "EOS": {"type": "number"}, "ETB": {"type": "number"}, "ETH": {"type": "number"}, "EUR": {"type": "number"}, "FJD": {"type": "number"}, "GBP": {"type": "number"}, "GEL": {"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"}, "INR": {"type": "number"}, "IQD": {"type": "number"}, "IRR": {"type": "number"}, "ISK": {"type": "number"}, "JMD": {"type": "number"}, "JOD": {"type": "number"}, "JPY": {"type": "number"}, "KES": {"type": "number"}, "KGS": {"type": "number"}, "KHR": {"type": "number"}, "KMF": {"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"}, "LTC": {"type": "number"}, "LYD": {"type": "number"}, "MAD": {"type": "number"}, "MDL": {"type": "number"}, "MKD": {"type": "number"}, "MMK": {"type": "number"}, "MOP": {"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"}, "SLL": {"type": "number"}, "SOS": {"type": "number"}, "SRD": {"type": "number"}, "SVC": {"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"}, "VND": {"type": "number"}, "XAF": {"type": "number"}, "XAG": {"type": "number"}, "XAU": {"type": "number"}, "XCD": {"type": "number"}, "XLM": {"type": "number"}, "XOF": {"type": "number"}, "XRP": {"type": "number"}, "YER": {"type": "number"}, "ZAR": {"type": "number"}, "ZMW": {"type": "number"}}, "type": "object"}, "updated": {"type": "integer"}, "valid": {"type": "boolean"}}, "type": "object"} |
2b541465-26f6-4d38-96d3-bf33c4917bc1/24745aae-4136-45a2-b689-a15b2efd8132/0/0 | Financial News | Financial news from several newspapers | null | Get News From A Specific Newspaper | Get news of specific newspaper ( Investing, Laa Tribune...)
List of newspaper ID available : bfm-bourse-trading-sat | le-point | investing | zone-bourse | les-echos | la-tribune | 200 | New Example | [{"title": "Le CAC 40 s'est renforc\u00e9, est-ce la fin des corrections\u202f?", "url": "https://fr.investing.com/news/stock-market-news/le-cac-40-sest-renforce-estce-la-fin-des-corrections-2049805", "source": "Investing"}, {"title": "Crypto : Record de flux entrants avec l'arriv\u00e9e des ETF Bitcoin", "url": "https://fr.investing.com/news/cryptocurrency-news/crypto--record-de-flux-entrants-avec-larrivee-des-etf-bitcoin-2049760", "source": "Investing"}, {"title": "Explosion du prix du Shiba Inu - La baleine d'Ethereum entre en action", "url": "https://fr.investing.com/news/cryptocurrency-news/explosion-du-prix-du-shiba-inu--la-baleine-dethereum-entre-en-action-2049748", "source": "Investing"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}}, "required": ["source", "title", "url"]}} |
2b541465-26f6-4d38-96d3-bf33c4917bc1/111c4dcc-7788-46a5-9c8b-522f1b6cbd6c/0/0 | Financial News | Financial news from several newspapers | null | Get All Financial News | This endpoint will return back all financial and economic news | 200 | New Example | [{"title": "Pioneer Natural Resources a perdu 501 millions de dollars sur les op\u00e9rations de couverture au troisi\u00e8me trimestre -d\u00e9claration", "url": "https://www.zonebourse.com//actualite-bourse/Pioneer-Natural-Resources-a-perdu-501-millions-de-dollars-sur-les-operations-de-couverture-au-troisi--36777662/", "source": "Zone Bourse"}, {"title": "Renault: des analystes r\u00e9it\u00e8rent leurs conseils", "url": "https://bourse.latribune.fr/webfg/articles/marches/renault-des-analystes-reitegraverent-leurs-conseils--8280518.html", "source": "La Tribune"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}}, "required": ["source", "title", "url"]}} |
3330a4fa-bf99-4dc7-98ea-32764a4ed4ba/f208af0e-ea38-4e20-9240-b5bc3cadf61d/0/0 | Euro exchange rates ECB | Get the exchange rates provided by European Central Bank (ECB). 41 currencies quoted against the euro. Data since 1999. | 0 | Get euro exchange rates | The value returned is the exchange rate for the specified date. If there is no data (as in closing days) then the value is empty and there is an error text. | 200 | Response | {"value": "1.1312"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]} |
77704760-9cbe-4b25-9184-3ebf33b3528b/ae64ae3b-d808-49ee-a791-f22833804827/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Symbols List | You can get all the list of supported currencies short names by below API. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 14:36:04 UTC"}, "msg": "Successfully", "response": [{"decimal": "4", "id": "1", "name": "Euro US Dollar", "symbol": "EUR/USD"}, {"decimal": "4", "id": "2", "name": "Euro Swiss Franc", "symbol": "EUR/CHF"}, {"decimal": "2", "id": "3", "name": "Euro Japanese Yen", "symbol": "EUR/JPY"}, {"decimal": "4", "id": "4", "name": "Euro British Pound", "symbol": "EUR/GBP"}, {"decimal": "4", "id": "5", "name": "Euro New Zealand Dollar", "symbol": "EUR/NZD"}], "status": true} | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 14:36:04 UTC"}, "msg": "Successfully", "response": [{"decimal": "4", "id": "1", "name": "Euro US Dollar", "symbol": "EUR/USD"}, {"decimal": "4", "id": "2", "name": "Euro Swiss Franc", "symbol": "EUR/CHF"}, {"decimal": "2", "id": "3", "name": "Euro Japanese Yen", "symbol": "EUR/JPY"}, {"decimal": "4", "id": "4", "name": "Euro British Pound", "symbol": "EUR/GBP"}, {"decimal": "4", "id": "5", "name": "Euro New Zealand Dollar", "symbol": "EUR/NZD"}], "status": true} |
77704760-9cbe-4b25-9184-3ebf33b3528b/324193ee-cffc-41a1-9b3c-f5677c99d419/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Currency Profile Detail | You can get all the details about Forex currencies. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:05:29 UTC"}, "msg": "Successfully", "response": [{"bank": "Swiss National Bank", "banknotes": "10 francs, 20 francs, 50 francs, 200 francs, 1000 francs, 100 francs", "banknotes_2": "10 francs, 20 francs, 50 francs, 200 francs, 1000 francs, 100 francs", "code_n": "756", "coins": "5 francs, 10 centimes, 2 francs, 1 \u2044 2 francs, 20 centimes, 1 francs, 5 centimes", "coins_2": "5 francs, 10 centimes, 2 francs, 1 ⁄ 2 francs, 20 centimes, 1 francs, 5 centimes", "country": "Switzerland", "icon": "https://fcsapi.com/assets/images/flags/chf.svg", "name": "Swiss Franc", "short_name": "CHF", "subunit": "Rappen", "symbol": "Fr., CHf, SFr.", "symbol_2": "Fr., CHf, SFr.", "type": "forex", "website": "snb.ch"}, {"bank": "European Central Bank", "banknotes": "\u20ac5, \u20ac10, \u20ac20, \u20ac50, \u20ac100", "banknotes_2": "€5, €10, €20, €50, €100", "code_n": "978", "coins": "1c, 2c, 5c, 10c, 20c, 50c, \u20ac1, \u20ac2", "coins_2": "1c, 2c, 5c, 10c, 20c, 50c, €1, €2", "country": "Belgium", "icon": "https://fcsapi.com/assets/images/flags/eur.svg", "name": "Euro", "short_name": "EUR", "subunit": "cent", "symbol": "\u20ac", "symbol_2": "€", "type": "forex", "website": "ecb.europa.eu"}, {"bank": "Bank of Japan", "banknotes": "JP\u00a510000, JP\u00a51000, JP\u00a52000, JP\u00a55000", "banknotes_2": "JP¥10000, JP¥1000, JP¥2000, JP¥5000", "code_n": "392", "coins": "JP\u00a5500, JP\u00a510, JP\u00a5100, JP\u00a550, JP\u00a51, JP\u00a55", "coins_2": "JP¥500, JP¥10, JP¥100, JP¥50, JP¥1, JP¥5", "country": "Japan", "icon": "https://fcsapi.com/assets/images/flags/jpy.svg", "name": "Japanese yen", "short_name": "JPY", "subunit": "sen", "symbol": "\u00a5, \u5186, \u5713", "symbol_2": "¥, \u5186, \u5713", "type": "forex", "website": "boj.or.jp"}, {"bank": "Federal Reserve System", "banknotes": "$1, $5, $10, $20, $50, $100", "banknotes_2": "$1, $5, $10, $20, $50, $100", "code_n": "998", "coins": "1\u00a2, 5\u00a2, 10\u00a2, 25\u00a2", "coins_2": "1¢, 5¢, 10¢, 25¢", "country": "United States", "icon": "https://fcsapi.com/assets/images/flags/usd.svg", "name": "US Dollar", "short_name": "USD", "subunit": "quarter", "symbol": "$", "symbol_2": "$", "type": "forex", "website": "usmint.gov"}], "status": true} | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:05:29 UTC"}, "msg": "Successfully", "response": [{"bank": "Swiss National Bank", "banknotes": "10 francs, 20 francs, 50 francs, 200 francs, 1000 francs, 100 francs", "banknotes_2": "10 francs, 20 francs, 50 francs, 200 francs, 1000 francs, 100 francs", "code_n": "756", "coins": "5 francs, 10 centimes, 2 francs, 1 \u2044 2 francs, 20 centimes, 1 francs, 5 centimes", "coins_2": "5 francs, 10 centimes, 2 francs, 1 ⁄ 2 francs, 20 centimes, 1 francs, 5 centimes", "country": "Switzerland", "icon": "https://fcsapi.com/assets/images/flags/chf.svg", "name": "Swiss Franc", "short_name": "CHF", "subunit": "Rappen", "symbol": "Fr., CHf, SFr.", "symbol_2": "Fr., CHf, SFr.", "type": "forex", "website": "snb.ch"}, {"bank": "European Central Bank", "banknotes": "\u20ac5, \u20ac10, \u20ac20, \u20ac50, \u20ac100", "banknotes_2": "€5, €10, €20, €50, €100", "code_n": "978", "coins": "1c, 2c, 5c, 10c, 20c, 50c, \u20ac1, \u20ac2", "coins_2": "1c, 2c, 5c, 10c, 20c, 50c, €1, €2", "country": "Belgium", "icon": "https://fcsapi.com/assets/images/flags/eur.svg", "name": "Euro", "short_name": "EUR", "subunit": "cent", "symbol": "\u20ac", "symbol_2": "€", "type": "forex", "website": "ecb.europa.eu"}, {"bank": "Bank of Japan", "banknotes": "JP\u00a510000, JP\u00a51000, JP\u00a52000, JP\u00a55000", "banknotes_2": "JP¥10000, JP¥1000, JP¥2000, JP¥5000", "code_n": "392", "coins": "JP\u00a5500, JP\u00a510, JP\u00a5100, JP\u00a550, JP\u00a51, JP\u00a55", "coins_2": "JP¥500, JP¥10, JP¥100, JP¥50, JP¥1, JP¥5", "country": "Japan", "icon": "https://fcsapi.com/assets/images/flags/jpy.svg", "name": "Japanese yen", "short_name": "JPY", "subunit": "sen", "symbol": "\u00a5, \u5186, \u5713", "symbol_2": "¥, \u5186, \u5713", "type": "forex", "website": "boj.or.jp"}, {"bank": "Federal Reserve System", "banknotes": "$1, $5, $10, $20, $50, $100", "banknotes_2": "$1, $5, $10, $20, $50, $100", "code_n": "998", "coins": "1\u00a2, 5\u00a2, 10\u00a2, 25\u00a2", "coins_2": "1¢, 5¢, 10¢, 25¢", "country": "United States", "icon": "https://fcsapi.com/assets/images/flags/usd.svg", "name": "US Dollar", "short_name": "USD", "subunit": "quarter", "symbol": "$", "symbol_2": "$", "type": "forex", "website": "usmint.gov"}], "status": true} |
77704760-9cbe-4b25-9184-3ebf33b3528b/5137b96f-429f-4ff4-83ab-f12f521edff0/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Latest Price | Forex latest price API is very useful. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:03:27 UTC"}, "msg": "Successfully", "response": [{"a": "1.21662", "b": "1.21627", "c": "1.21640", "ch": "-0.00911", "cp": "-0.74%", "h": "1.22358", "id": "1", "l": "1.21291", "o": "1.22551", "s": "EUR/USD", "sp": "3.50", "t": "1608552196", "tm": "2020-12-21 12:03:16"}, {"a": "1.08127", "b": "1.08048", "c": "1.08083", "ch": "-0.00158", "cp": "-0.15%", "h": "1.08318", "id": "2", "l": "1.07960", "o": "1.08241", "s": "EUR/CHF", "sp": "7.90", "t": "1608552196", "tm": "2020-12-21 12:03:16"}, {"a": "126.196", "b": "126.130", "c": "126.163", "ch": "-0.428", "cp": "-0.34%", "h": "126.591", "id": "3", "l": "125.916", "o": "126.591", "s": "EUR/JPY", "sp": "6.60", "t": "1608552196", "tm": "2020-12-21 12:03:16"}], "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/fd623a06-076a-40e6-b0e2-cfce6bfe275f/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Last Candle | We provide the last candle price of a currency | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 15:01:46 UTC"}, "msg": "Successfully", "response": [{"a": "1.22145", "b": "1.2211", "c": "1.22123", "ch": "0", "cp": "0%", "h": "1.22360", "id": "1", "l": "1.21291", "o": "1.22123", "s": "EUR/USD", "sp": "3.50", "t": "1608508800", "tm": "2020-12-21 00:00:00", "up": "2020-12-21 15:01:40"}, {"a": "1.21943", "b": "1.21910", "c": "1.21932", "ch": "-0.00156", "cp": "-0.13%", "h": "1.22360", "id": "1", "l": "1.21796", "o": "1.22088", "s": "EUR/USD", "sp": "3.3", "t": "1608595200", "tm": "2020-12-22 00:00:00", "up": "2020-12-21 04:58:02"}, {"a": "1.08465", "b": "1.08386", "c": "1.08421", "ch": "0.00237", "cp": "0.22%", "h": "1.0848", "id": "2", "l": "1.07960", "o": "1.08184", "s": "EUR/CHF", "sp": "7.90", "t": "1608508800", "tm": "2020-12-21 00:00:00", "up": "2020-12-21 15:01:40"}, {"a": "1.08138", "b": "1.08072", "c": "1.08105", "ch": "-0.00046", "cp": "-0.04%", "h": "1.08307", "id": "2", "l": "1.07960", "o": "1.08151", "s": "EUR/CHF", "sp": "6.6", "t": "1608595200", "tm": "2020-12-22 00:00:00", "up": "2020-12-21 04:58:02"}, {"a": "126.512", "b": "126.455", "c": "126.488", "ch": "0.112", "cp": "0.09%", "h": "126.602", "id": "3", "l": "125.916", "o": "126.376", "s": "EUR/JPY", "sp": "5.70", "t": "1608508800", "tm": "2020-12-21 00:00:00", "up": "2020-12-21 15:01:40"}, {"a": "126.07", "b": "126.04", "c": "126.06", "ch": "-0.25", "cp": "-0.2%", "h": "126.602", "id": "3", "l": "125.916", "o": "126.310", "s": "EUR/JPY", "sp": "3", "t": "1608595200", "tm": "2020-12-22 00:00:00", "up": "2020-12-21 04:58:02"}], "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/eeaeab97-54ab-41cc-81fe-e5aaab5e2006/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Economy Calendar | Get real-time indicators as economic events are announced and see the immediate impact of global markets, including past, forecast, and actual figures. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:25:05 UTC"}, "msg": "Successfully", "response": [{"actual": "", "comment": "", "country": "JP", "currency": "JPY", "date": "2020-12-21 05:00:00", "forecast": "", "importance": "1", "indicator": "Chain Store Sales YY*", "period": "Nov. 2020", "previous": "2.8", "scale": "", "source": "", "title": "Japan-Sales & Orders-Chain Store Sales YY", "unit": "%"}, {"actual": "", "comment": "The Chicago Fed National Activity Index, or CFNAI, provides information on thecurrent state of economic activity and inflationary pressures in the UnitedStates. Movements in the CFNAI closely track periods of economic expansion andcontraction, as well as periods of rising and falling inflationary pressures.The CFNAI extracts a single, summary measure of current economic activity from ahost of common indicators. The 85 economic indicators underlying the CFNAI aredrawn from five categories of data: output and income; employment, unemploymentand hours; personal consumption, housing starts and sales; manufacturing andtrade sales; and inventories and orders. Each of these data series measures someaspect of overall macroeconomic activity.", "country": "US", "currency": "USD", "date": "2020-12-21 13:30:00", "forecast": "", "importance": "0", "indicator": "National Activity Index*", "period": "Nov. 2020", "previous": "0.83", "scale": "", "source": "FRB Chicago", "title": "United States-National Activity Index-National Activity Index", "unit": "Index"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:00:00", "forecast": "", "importance": "0", "indicator": "Export Wheat Inspected", "period": "w/o Dec. 14, 2020", "previous": "261.164", "scale": " K", "source": "Agricul Dept", "title": "United States-exinspect-Export Wheat Inspected", "unit": "Tonne"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:00:00", "forecast": "", "importance": "0", "indicator": "Export Corn Inspected", "period": "w/o Dec. 14, 2020", "previous": "886.938", "scale": " K", "source": "Agricul Dept", "title": "United States-exinspect-Export Corn Inspected", "unit": "Tonne"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:00:00", "forecast": "", "importance": "0", "indicator": "Exp Soybean Inspected", "period": "w/o Dec. 14, 2020", "previous": "2368.781", "scale": " K", "source": "Agricul Dept", "title": "United States-exinspect-Exp Soybean Inspected", "unit": "Tonne"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - TA", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - TA", "unit": "USD"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - HR", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - HR", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - HAP", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - HAP", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - BTC", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - BTC", "unit": "Ratio"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - TA", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - TA", "unit": "USD"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - HR", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - HR", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - HAP", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - HAP", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - BTC", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - BTC", "unit": "Ratio"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - TA", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - TA", "unit": "USD"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - HY", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - HY", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - HAP", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - HAP", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - BTC", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - BTC", "unit": "Ratio"}], "status": true} | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:25:05 UTC"}, "msg": "Successfully", "response": [{"actual": "", "comment": "", "country": "JP", "currency": "JPY", "date": "2020-12-21 05:00:00", "forecast": "", "importance": "1", "indicator": "Chain Store Sales YY*", "period": "Nov. 2020", "previous": "2.8", "scale": "", "source": "", "title": "Japan-Sales & Orders-Chain Store Sales YY", "unit": "%"}, {"actual": "", "comment": "The Chicago Fed National Activity Index, or CFNAI, provides information on thecurrent state of economic activity and inflationary pressures in the UnitedStates. Movements in the CFNAI closely track periods of economic expansion andcontraction, as well as periods of rising and falling inflationary pressures.The CFNAI extracts a single, summary measure of current economic activity from ahost of common indicators. The 85 economic indicators underlying the CFNAI aredrawn from five categories of data: output and income; employment, unemploymentand hours; personal consumption, housing starts and sales; manufacturing andtrade sales; and inventories and orders. Each of these data series measures someaspect of overall macroeconomic activity.", "country": "US", "currency": "USD", "date": "2020-12-21 13:30:00", "forecast": "", "importance": "0", "indicator": "National Activity Index*", "period": "Nov. 2020", "previous": "0.83", "scale": "", "source": "FRB Chicago", "title": "United States-National Activity Index-National Activity Index", "unit": "Index"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:00:00", "forecast": "", "importance": "0", "indicator": "Export Wheat Inspected", "period": "w/o Dec. 14, 2020", "previous": "261.164", "scale": " K", "source": "Agricul Dept", "title": "United States-exinspect-Export Wheat Inspected", "unit": "Tonne"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:00:00", "forecast": "", "importance": "0", "indicator": "Export Corn Inspected", "period": "w/o Dec. 14, 2020", "previous": "886.938", "scale": " K", "source": "Agricul Dept", "title": "United States-exinspect-Export Corn Inspected", "unit": "Tonne"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:00:00", "forecast": "", "importance": "0", "indicator": "Exp Soybean Inspected", "period": "w/o Dec. 14, 2020", "previous": "2368.781", "scale": " K", "source": "Agricul Dept", "title": "United States-exinspect-Exp Soybean Inspected", "unit": "Tonne"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - TA", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - TA", "unit": "USD"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - HR", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - HR", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - HAP", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - HAP", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "3M Bill Auc - BTC", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 Month-3M Bill Auc - BTC", "unit": "Ratio"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - TA", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - TA", "unit": "USD"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - HR", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - HR", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - HAP", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - HAP", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 16:30:00", "forecast": "", "importance": "1", "indicator": "6M Bill Auc - BTC", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bill Auction - 3 & 6 month-6M Bill Auc - BTC", "unit": "Ratio"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - TA", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - TA", "unit": "USD"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - HY", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - HY", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - HAP", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - HAP", "unit": "%"}, {"actual": "", "comment": "", "country": "US", "currency": "USD", "date": "2020-12-21 19:00:00", "forecast": "", "importance": "1", "indicator": "20Y Bond Auc - BTC", "period": "Dec. 21, 2020", "previous": "", "scale": "", "source": "", "title": "United States-Bond Auction - 20 Year-20Y Bond Auc - BTC", "unit": "Ratio"}], "status": true} |
77704760-9cbe-4b25-9184-3ebf33b3528b/295dc82e-b912-4621-a2a0-359930db7425/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Base Currency | On the base of 1 currency, it will return all quote prices of all available currencies. | 200 | Response | {"code": 200, "info": {"base": "USD", "credit_count": 1, "server_time": "2020-12-21 12:09:51 UTC", "type": "forex"}, "msg": "Successfully", "response": {"AED": "3.67325", "AFN": "77.13", "ALL": "101.5157", "AMD": "522.253", "ANG": "1.79508", "ARS": "82.7335153", "AUD": "1.331168", "AZN": "1.6992", "BAM": "1.6066568", "BBD": "2.01917", "BDT": "84.7958", "BGN": "1.60676", "BHD": "0.3774", "BIF": "1939.332", "BND": "1.33788", "BOB": "6.8936992", "BRL": "5.186722", "BSD": "1", "BWP": "10.8932", "BYN": "2.5188", "BZD": "2.0157", "CAD": "1.28917", "CHF": "0.88835", "CHF RTS": "0.88824", "CLP": "733.6757153", "CNH": "6.54758", "CNY": "6.5526505", "COP": "3424.6575342", "CRC": "606.332", "CUP": "1", "CVE": "92.0747324", "CZK": "21.6024", "DJF": "178.03", "DKK": "6.11266", "DOP": "58.242", "DZD": "132.433", "EGP": "15.6757011", "ETB": "39.15597", "EUR": "0.82141595682638", "FJD": "2.0416497", "GBP": "0.7538465", "GEL": "3.265", "GHS": "5.8657907", "GMD": "52.2", "GNF": "9985", "GTQ": "7.8", "HKD": "7.75313", "HNL": "24.15406", "HRK": "6.193", "HTG": "69.8735", "HUF": "296.2524071", "IDR": "14130", "ILS": "3.2494963", "INR": "74.0343", "IQD": "1193.815", "IRR": "42000", "ISK": "128.6553", "JMD": "143.2457", "JOD": "0.7082554", "JPY": "103.67", "JPY RTS": "103.872", "KES": "111", "KGS": "80.7", "KHR": "4053.5", "KMF": "402.5304", "KRW": "1109.1393079", "KWD": "0.3048399", "KYD": "0.8300064", "KZT": "421.297", "LAK": "9283", "LBP": "1512.207", "LKR": "187.951", "LSL": "14.8656", "LYD": "1.33935", "MAD": "8.98735", "MDL": "17.22753", "MGA": "3771.668", "MKD": "50.692", "MMK": "1332.5", "MOP": "7.99152", "MRO": "36.1603", "MUR": "39.354", "MVR": "15.466", "MWK": "764.264", "MXN": "20.4164965", "MYR": "4.0489108", "MZN": "74.534", "NAD": "14.86258", "NGN": "381.253", "NIO": "34.851706", "NOK": "8.76854", "NPR": "118.05", "NZD": "1.42193", "OMR": "0.3853", "PAB": "1", "PEN": "3.5951825", "PGK": "3.5188", "PHP": "48.1715", "PKR": "160.6", "PLN": "3.70227", "PYG": "6920.4152249", "QAR": "3.6417", "RON": "3.9994", "RSD": "96.6158", "RUB": "75.18062", "RWF": "990.4213", "SAR": "3.7499531", "SCR": "21.2053", "SDG": "55.12774", "SDR": "0.6603938", "SEK": "8.3316", "SGD": "1.33788", "SOS": "578.501", "STD": "21.55478", "SVC": "8.75482", "SYP": "1257.5001", "SZL": "14.8635", "THB": "30.1", "TJS": "11.31", "TND": "2.7058", "TRY": "7.67538", "TTD": "6.80386", "TWD": "28.1816", "TZS": "2320", "UAH": "28.1254395", "UGX": "3645", "USD": "1", "UYU": "42.3405877", "UZS": "10473", "VEF": "100000", "VND": "23130", "VUV": "110.951", "XAF": "538.9512", "XAU": "0.0005316", "XCD": "2.714", "XOF": "542.9758", "XPF": "98.04", "YER": "250.1952", "ZAR": "14.86361", "ZMK": "21.141"}, "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/a34aae75-76ba-4d02-8e35-f12357745695/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Search | This API is like website search. You can search all currency with similar name. It will search in currency full name and short name. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:29:00 UTC"}, "msg": "Successfully", "response": [{"decimal": "4", "id": "1", "name": "Euro US Dollar", "short_name": "EUR/USD", "type": "forex"}, {"decimal": "4", "id": "5", "name": "Euro New Zealand Dollar", "short_name": "EUR/NZD", "type": "forex"}, {"decimal": "4", "id": "6", "name": "Euro Canadian Dollar", "short_name": "EUR/CAD", "type": "forex"}, {"decimal": "4", "id": "8", "name": "Euro Singapore Dollar", "short_name": "EUR/SGD", "type": "forex"}, {"decimal": "4", "id": "12", "name": "Euro Australian Dollar", "short_name": "EUR/AUD", "type": "forex"}, {"decimal": "4", "id": "241", "name": "Australian Dollar Euro", "short_name": "AUD/EUR", "type": "forex"}, {"decimal": "4", "id": "373", "name": "Canadian Dollar Euro", "short_name": "CAD/EUR", "type": "forex"}, {"decimal": "4", "id": "627", "name": "Euro Barbadian Dollar", "short_name": "EUR/BBD", "type": "forex"}, {"decimal": "4", "id": "632", "name": "Euro Brunei Dollar", "short_name": "EUR/BND", "type": "forex"}, {"decimal": "4", "id": "635", "name": "Euro Bahamas Dollar", "short_name": "EUR/BSD", "type": "forex"}, {"decimal": "4", "id": "638", "name": "Euro Belize Dollar", "short_name": "EUR/BZD", "type": "forex"}, {"decimal": "4", "id": "651", "name": "Euro Fiji Dollar", "short_name": "EUR/FJD", "type": "forex"}, {"decimal": "4", "id": "657", "name": "Euro Hong Kong Dollar", "short_name": "EUR/HKD", "type": "forex"}, {"decimal": "3", "id": "668", "name": "Euro Jamaican Dollar", "short_name": "EUR/JMD", "type": "forex"}, {"decimal": "4", "id": "674", "name": "Euro Cayman Islands Dollar", "short_name": "EUR/KYD", "type": "forex"}, {"decimal": "4", "id": "694", "name": "Euro Namibian Dollar", "short_name": "EUR/NAD", "type": "forex"}, {"decimal": "4", "id": "723", "name": "Euro Trinidad Dollar", "short_name": "EUR/TTD", "type": "forex"}, {"decimal": "3", "id": "724", "name": "Euro Taiwan Dollar", "short_name": "EUR/TWD", "type": "forex"}, {"decimal": "4", "id": "733", "name": "Euro East Caribbean Dollar", "short_name": "EUR/XCD", "type": "forex"}, {"decimal": "4", "id": "839", "name": "Hong Kong Dollar Euro", "short_name": "HKD/EUR", "type": "forex"}, {"decimal": "4", "id": "1249", "name": "New Zealand Dollar Euro", "short_name": "NZD/EUR", "type": "forex"}, {"decimal": "4", "id": "1590", "name": "Singapore Dollar Euro", "short_name": "SGD/EUR", "type": "forex"}, {"decimal": "5", "id": "1740", "name": "Taiwan Dollar Euro", "short_name": "TWD/EUR", "type": "forex"}, {"decimal": "4", "id": "1815", "name": "US Dollar Euro", "short_name": "USD/EUR", "type": "forex"}, {"decimal": "5", "id": "3756", "name": "EuropeCoin US Dollar", "short_name": "ERC/USD", "type": "crypto"}, {"decimal": "6", "id": "3856", "name": "Eurocoin US Dollar", "short_name": "EUC/USD", "type": "crypto"}, {"decimal": "6", "id": "5276", "name": "Neuro US Dollar", "short_name": "NRO/USD", "type": "crypto"}, {"decimal": "5", "id": "5285", "name": "Neurotoken US Dollar", "short_name": "NTK/USD", "type": "crypto"}, {"decimal": "4", "id": "2", "name": "Euro Swiss Franc", "short_name": "EUR/CHF", "type": "forex"}, {"decimal": "2", "id": "3", "name": "Euro Japanese Yen", "short_name": "EUR/JPY", "type": "forex"}], "status": true} | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-21 12:29:00 UTC"}, "msg": "Successfully", "response": [{"decimal": "4", "id": "1", "name": "Euro US Dollar", "short_name": "EUR/USD", "type": "forex"}, {"decimal": "4", "id": "5", "name": "Euro New Zealand Dollar", "short_name": "EUR/NZD", "type": "forex"}, {"decimal": "4", "id": "6", "name": "Euro Canadian Dollar", "short_name": "EUR/CAD", "type": "forex"}, {"decimal": "4", "id": "8", "name": "Euro Singapore Dollar", "short_name": "EUR/SGD", "type": "forex"}, {"decimal": "4", "id": "12", "name": "Euro Australian Dollar", "short_name": "EUR/AUD", "type": "forex"}, {"decimal": "4", "id": "241", "name": "Australian Dollar Euro", "short_name": "AUD/EUR", "type": "forex"}, {"decimal": "4", "id": "373", "name": "Canadian Dollar Euro", "short_name": "CAD/EUR", "type": "forex"}, {"decimal": "4", "id": "627", "name": "Euro Barbadian Dollar", "short_name": "EUR/BBD", "type": "forex"}, {"decimal": "4", "id": "632", "name": "Euro Brunei Dollar", "short_name": "EUR/BND", "type": "forex"}, {"decimal": "4", "id": "635", "name": "Euro Bahamas Dollar", "short_name": "EUR/BSD", "type": "forex"}, {"decimal": "4", "id": "638", "name": "Euro Belize Dollar", "short_name": "EUR/BZD", "type": "forex"}, {"decimal": "4", "id": "651", "name": "Euro Fiji Dollar", "short_name": "EUR/FJD", "type": "forex"}, {"decimal": "4", "id": "657", "name": "Euro Hong Kong Dollar", "short_name": "EUR/HKD", "type": "forex"}, {"decimal": "3", "id": "668", "name": "Euro Jamaican Dollar", "short_name": "EUR/JMD", "type": "forex"}, {"decimal": "4", "id": "674", "name": "Euro Cayman Islands Dollar", "short_name": "EUR/KYD", "type": "forex"}, {"decimal": "4", "id": "694", "name": "Euro Namibian Dollar", "short_name": "EUR/NAD", "type": "forex"}, {"decimal": "4", "id": "723", "name": "Euro Trinidad Dollar", "short_name": "EUR/TTD", "type": "forex"}, {"decimal": "3", "id": "724", "name": "Euro Taiwan Dollar", "short_name": "EUR/TWD", "type": "forex"}, {"decimal": "4", "id": "733", "name": "Euro East Caribbean Dollar", "short_name": "EUR/XCD", "type": "forex"}, {"decimal": "4", "id": "839", "name": "Hong Kong Dollar Euro", "short_name": "HKD/EUR", "type": "forex"}, {"decimal": "4", "id": "1249", "name": "New Zealand Dollar Euro", "short_name": "NZD/EUR", "type": "forex"}, {"decimal": "4", "id": "1590", "name": "Singapore Dollar Euro", "short_name": "SGD/EUR", "type": "forex"}, {"decimal": "5", "id": "1740", "name": "Taiwan Dollar Euro", "short_name": "TWD/EUR", "type": "forex"}, {"decimal": "4", "id": "1815", "name": "US Dollar Euro", "short_name": "USD/EUR", "type": "forex"}, {"decimal": "5", "id": "3756", "name": "EuropeCoin US Dollar", "short_name": "ERC/USD", "type": "crypto"}, {"decimal": "6", "id": "3856", "name": "Eurocoin US Dollar", "short_name": "EUC/USD", "type": "crypto"}, {"decimal": "6", "id": "5276", "name": "Neuro US Dollar", "short_name": "NRO/USD", "type": "crypto"}, {"decimal": "5", "id": "5285", "name": "Neurotoken US Dollar", "short_name": "NTK/USD", "type": "crypto"}, {"decimal": "4", "id": "2", "name": "Euro Swiss Franc", "short_name": "EUR/CHF", "type": "forex"}, {"decimal": "2", "id": "3", "name": "Euro Japanese Yen", "short_name": "EUR/JPY", "type": "forex"}], "status": true} |
77704760-9cbe-4b25-9184-3ebf33b3528b/8f1bcb57-c5e6-4dfe-a955-3ae2e297d40b/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Technical Indicator | The Collection of Indicators Powerful & Profitable Forex Trading | 200 | Response | {"code": 200, "info": {"credit_count": 1, "decimal": "4", "disclaimer": "Note: These Prices, Market trends and signals are not develop for trading purpose. Therefore we doesn`t bear any responsibility for any trading losses you might incur as a result of using this data.", "id": "1", "period": "1d", "server_time": "2020-12-21 12:18:32 UTC", "symbol": "EUR/USD", "update": "just now", "update_time": "2020-12-21 12:18:32 UTC"}, "msg": "Successfully", "response": {"count": {"Total_Buy": 2, "Total_Neutral": 1, "Total_Sell": 4}, "indicators": {"ATR14": {"s": "", "v": "0.0072"}, "CCI14": {"s": "Sell", "v": "30.2201"}, "MACD12_26": {"s": "Neutral", "v": "0.0089"}, "ROC": {"s": "Sell", "v": "0.4622"}, "RSI14": {"s": "Sell", "v": "61.8811"}, "STOCH9_6": {"s": "Buy", "v": "69.4239"}, "STOCHRSI14": {"s": "Oversold", "v": "0"}, "UltimateOscillator": {"s": "Buy", "v": "54.8187"}, "WilliamsR": {"s": "Sell", "v": "-47.7958"}, "summary": "Neutral"}, "overall": {"change_at": "2020-12-21 12:16:14", "msg": "summary based on all SMA,EMA,Pivot Points and indicators", "summary": "Neutral"}}, "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/0a6cd2ff-acd3-42f6-83d7-d225fdd7f065/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Currency Converter | Convert Price From 1 Currency To Subject Currency | 200 | Response | {"code": 200, "info": {"credit_count": 1, "server_time": "2020-12-22 06:15:36 UTC"}, "msg": "Successfully", "response": {"price_1x_EUR": "0.81817", "price_1x_USD": "1.22224", "total": "244.448"}, "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/342b0137-7198-42c1-8ed8-9928919e22cc/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Moving Averages (MA Lines) | Moving Average (MA) is a trend indicator. | 200 | Response | {"code": 200, "info": {"credit_count": 1, "decimal": "4", "disclaimer": "Note: These Prices, Market trends and signals are not develop for trading purpose. Therefore we doesn`t bear any responsibility for any trading losses you might incur as a result of using this data.", "id": "1", "period": "1d", "server_time": "2020-12-21 12:17:22 UTC", "symbol": "EUR/USD", "update": "just now", "update_time": "2020-12-21 12:17:22 UTC"}, "msg": "Successfully", "response": {"count": {"Total_Buy": 8, "Total_Neutral": 3, "Total_Sell": 1}, "ma_avg": {"EMA": {"MA10": {"s": "Neutral", "v": "1.21731"}, "MA100": {"s": "Buy", "v": "1.18261"}, "MA20": {"s": "Buy", "v": "1.21061"}, "MA200": {"s": "Buy", "v": "1.16211"}, "MA5": {"s": "Sell", "v": "1.21981"}, "MA50": {"s": "Buy", "v": "1.19711"}}, "SMA": {"MA10": {"s": "Neutral", "v": "1.21721"}, "MA100": {"s": "Buy", "v": "1.18591"}, "MA20": {"s": "Buy", "v": "1.21051"}, "MA200": {"s": "Buy", "v": "1.14911"}, "MA5": {"s": "Neutral", "v": "1.2221"}, "MA50": {"s": "Buy", "v": "1.19181"}}, "summary": "Buy"}, "overall": {"change_at": "2020-12-21 12:16:14", "msg": "summary based on all SMA,EMA,Pivot Points and indicators", "summary": "Neutral"}}, "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/40a0240f-1343-4e49-a44a-48b5c2d4a620/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Pivot Points | In financial markets, a pivot point | 200 | Response | {"code": 200, "info": {"credit_count": 1, "decimal": "4", "disclaimer": "Note: These Prices, Market trends and signals are not develop for trading purpose. Therefore we doesn`t bear any responsibility for any trading losses you might incur as a result of using this data.", "id": "1", "period": "1d", "server_time": "2020-12-21 12:16:14 UTC", "symbol": "EUR/USD", "update": "just now", "update_time": "2020-12-21 12:16:14 UTC"}, "msg": "Successfully", "response": {"overall": {"change_at": "2020-12-21 12:16:14", "msg": "summary based on all SMA,EMA,Pivot Points and indicators", "summary": "Neutral"}, "pivot_point": {"camarilla": {"R1": "1.2214", "R2": "1.2216", "R3": "1.2218", "R4": "1.2225", "S1": "1.2209", "S2": "1.2207", "S3": "1.2205", "S4": "1.2198", "pp": "1.2219"}, "classic": {"R1": "1.2228", "R2": "1.2244", "R3": "1.2253", "S1": "1.2203", "S2": "1.2194", "S3": "1.2178", "pp": "1.2219"}, "demark": {"R1": "1.2224", "S1": "1.2199", "high": "1.2224", "low": "1.2199"}, "fibonacci": {"R1": "1.2229", "R2": "1.2235", "R3": "1.2244", "S1": "1.221", "S2": "1.2204", "S3": "1.2194", "pp": "1.2219"}, "woodie": {"R1": "1.2224", "R2": "1.2242", "S1": "1.2199", "S2": "1.2192", "pp": "1.2217"}}}, "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
77704760-9cbe-4b25-9184-3ebf33b3528b/76e92e0f-36f5-42ec-bc6d-ee599ff8cbae/0/0 | Forex | The FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. | null | Historical Price | You want to know about the historical exchange prices | 200 | Response | {"code": 200, "info": {"credit_count": 1, "decimal": "4", "id": "1", "period": "1d", "server_time": "2020-12-21 12:14:33 UTC", "symbol": "EUR/USD"}, "msg": "Successfully", "response": [{"c": "1.115", "h": "1.11525", "l": "1.10795", "o": "1.1112", "t": 1572393600, "tm": "2019-10-30 00:00:00", "v": "71387"}, {"c": "1.1152", "h": "1.1176", "l": "1.11305", "o": "1.1151", "t": 1572480000, "tm": "2019-10-31 00:00:00", "v": "84758"}, {"c": "1.1167", "h": "1.11725", "l": "1.11275", "o": "1.1152", "t": 1572566400, "tm": "2019-11-01 00:00:00", "v": "67555"}, {"c": "1.1128", "h": "1.1176", "l": "1.1124", "o": "1.11655", "t": 1572825600, "tm": "2019-11-04 00:00:00", "v": "66791"}, {"c": "1.10745", "h": "1.1141", "l": "1.1063", "o": "1.1128", "t": 1572912000, "tm": "2019-11-05 00:00:00", "v": "81702"}, {"c": "1.1067", "h": "1.1094", "l": "1.1064", "o": "1.1075", "t": 1572998400, "tm": "2019-11-06 00:00:00", "v": "73321"}, {"c": "1.10495", "h": "1.10925", "l": "1.10355", "o": "1.1066", "t": 1573084800, "tm": "2019-11-07 00:00:00", "v": "84044"}, {"c": "1.1018", "h": "1.1056", "l": "1.1016", "o": "1.105", "t": 1573171200, "tm": "2019-11-08 00:00:00", "v": "56670"}, {"c": "1.1033", "h": "1.1044", "l": "1.1016", "o": "1.1022", "t": 1573430400, "tm": "2019-11-11 00:00:00", "v": "45864"}, {"c": "1.1009", "h": "1.10395", "l": "1.1002", "o": "1.10325", "t": 1573516800, "tm": "2019-11-12 00:00:00", "v": "58974"}, {"c": "1.1007", "h": "1.1021", "l": "1.09945", "o": "1.10095", "t": 1573603200, "tm": "2019-11-13 00:00:00", "v": "64750"}, {"c": "1.1023", "h": "1.1028", "l": "1.09885", "o": "1.1006", "t": 1573689600, "tm": "2019-11-14 00:00:00", "v": "68056"}, {"c": "1.1052", "h": "1.1058", "l": "1.1014", "o": "1.10215", "t": 1573776000, "tm": "2019-11-15 00:00:00", "v": "65267"}, {"c": "1.1072", "h": "1.1091", "l": "1.1048", "o": "1.1052", "t": 1574035200, "tm": "2019-11-18 00:00:00", "v": "64201"}, {"c": "1.1079", "h": "1.10845", "l": "1.1062", "o": "1.1072", "t": 1574121600, "tm": "2019-11-19 00:00:00", "v": "67015"}, {"c": "1.1073", "h": "1.10825", "l": "1.10525", "o": "1.1078", "t": 1574208000, "tm": "2019-11-20 00:00:00", "v": "75056"}, {"c": "1.1059", "h": "1.10975", "l": "1.10515", "o": "1.1074", "t": 1574294400, "tm": "2019-11-21 00:00:00", "v": "70467"}, {"c": "1.1024", "h": "1.10865", "l": "1.1014", "o": "1.10585", "t": 1574380800, "tm": "2019-11-22 00:00:00", "v": "65360"}, {"c": "1.1014", "h": "1.1033", "l": "1.10035", "o": "1.1024", "t": 1574640000, "tm": "2019-11-25 00:00:00", "v": "57550"}, {"c": "1.102", "h": "1.10265", "l": "1.10065", "o": "1.1014", "t": 1574726400, "tm": "2019-11-26 00:00:00", "v": "60849"}, {"c": "1.0999", "h": "1.10255", "l": "1.09915", "o": "1.10195", "t": 1574812800, "tm": "2019-11-27 00:00:00", "v": "61752"}, {"c": "1.1009", "h": "1.1019", "l": "1.09985", "o": "1.09985", "t": 1574899200, "tm": "2019-11-28 00:00:00", "v": "60178"}, {"c": "1.1017", "h": "1.10295", "l": "1.09805", "o": "1.10085", "t": 1574985600, "tm": "2019-11-29 00:00:00", "v": "57114"}, {"c": "1.1079", "h": "1.109", "l": "1.10025", "o": "1.1014", "t": 1575244800, "tm": "2019-12-02 00:00:00", "v": "62319"}, {"c": "1.1083", "h": "1.1094", "l": "1.1065", "o": "1.10785", "t": 1575331200, "tm": "2019-12-03 00:00:00", "v": "67149"}, {"c": "1.1078", "h": "1.11165", "l": "1.1066", "o": "1.10815", "t": 1575417600, "tm": "2019-12-04 00:00:00", "v": "65258"}, {"c": "1.1104", "h": "1.1109", "l": "1.1077", "o": "1.1079", "t": 1575504000, "tm": "2019-12-05 00:00:00", "v": "53754"}, {"c": "1.1059", "h": "1.11105", "l": "1.10395", "o": "1.11045", "t": 1575590400, "tm": "2019-12-06 00:00:00", "v": "47037"}, {"c": "1.1064", "h": "1.1079", "l": "1.1052", "o": "1.10545", "t": 1575849600, "tm": "2019-12-09 00:00:00", "v": "42703"}, {"c": "1.1093", "h": "1.10985", "l": "1.1062", "o": "1.10635", "t": 1575936000, "tm": "2019-12-10 00:00:00", "v": "59627"}, {"c": "1.113", "h": "1.11455", "l": "1.10695", "o": "1.1092", "t": 1576022400, "tm": "2019-12-11 00:00:00", "v": "62709"}, {"c": "1.113", "h": "1.1155", "l": "1.11025", "o": "1.113", "t": 1576108800, "tm": "2019-12-12 00:00:00", "v": "67589"}, {"c": "1.1121", "h": "1.12005", "l": "1.1111", "o": "1.11295", "t": 1576195200, "tm": "2019-12-13 00:00:00", "v": "81103"}, {"c": "1.1144", "h": "1.1159", "l": "1.1122", "o": "1.1122", "t": 1576454400, "tm": "2019-12-16 00:00:00", "v": "55187"}, {"c": "1.115", "h": "1.1176", "l": "1.11285", "o": "1.1143", "t": 1576540800, "tm": "2019-12-17 00:00:00", "v": "58494"}, {"c": "1.1113", "h": "1.11555", "l": "1.111", "o": "1.115", "t": 1576627200, "tm": "2019-12-18 00:00:00", "v": "54791"}, {"c": "1.1122", "h": "1.1145", "l": "1.1107", "o": "1.1113", "t": 1576713600, "tm": "2019-12-19 00:00:00", "v": "53354"}, {"c": "1.1079", "h": "1.11265", "l": "1.10655", "o": "1.1122", "t": 1576800000, "tm": "2019-12-20 00:00:00", "v": "49586"}, {"c": "1.1088", "h": "1.10965", "l": "1.1069", "o": "1.1081", "t": 1577059200, "tm": "2019-12-23 00:00:00", "v": "48038"}, {"c": "1.1088", "h": "1.1095", "l": "1.1069", "o": "1.1089", "t": 1577145600, "tm": "2019-12-24 00:00:00", "v": "55940"}, {"c": "1.1091", "h": "1.11075", "l": "1.1073", "o": "1.1089", "t": 1577232000, "tm": "2019-12-25 00:00:00", "v": "16738"}, {"c": "1.1098", "h": "1.111", "l": "1.10815", "o": "1.1091", "t": 1577318400, "tm": "2019-12-26 00:00:00", "v": "30960"}, {"c": "1.11765", "h": "1.11885", "l": "1.10955", "o": "1.10965", "t": 1577404800, "tm": "2019-12-27 00:00:00", "v": "51371"}, {"c": "1.1199", "h": "1.1223", "l": "1.117", "o": "1.1175", "t": 1577664000, "tm": "2019-12-30 00:00:00", "v": "51634"}, {"c": "1.1212", "h": "1.124", "l": "1.11975", "o": "1.1198", "t": 1577750400, "tm": "2019-12-31 00:00:00", "v": "43320"}, {"c": "1.1212", "h": "1.1223", "l": "1.1205", "o": "1.12125", "t": 1577836800, "tm": "2020-01-01 00:00:00", "v": "784"}, {"c": "1.1172", "h": "1.1227", "l": "1.1163", "o": "1.1212", "t": 1577923200, "tm": "2020-01-02 00:00:00", "v": "43894"}, {"c": "1.116", "h": "1.1181", "l": "1.11245", "o": "1.1172", "t": 1578009600, "tm": "2020-01-03 00:00:00", "v": "56617"}, {"c": "1.1195", "h": "1.1207", "l": "1.1155", "o": "1.1168", "t": 1578268800, "tm": "2020-01-06 00:00:00", "v": "58881"}, {"c": "1.1153", "h": "1.1198", "l": "1.11325", "o": "1.11975", "t": 1578355200, "tm": "2020-01-07 00:00:00", "v": "69969"}, {"c": "1.1105", "h": "1.1169", "l": "1.11015", "o": "1.1154", "t": 1578441600, "tm": "2020-01-08 00:00:00", "v": "87760"}, {"c": "1.1106", "h": "1.11215", "l": "1.10925", "o": "1.11055", "t": 1578528000, "tm": "2020-01-09 00:00:00", "v": "71073"}, {"c": "1.1122", "h": "1.113", "l": "1.10845", "o": "1.11055", "t": 1578614400, "tm": "2020-01-10 00:00:00", "v": "63100"}, {"c": "1.1135", "h": "1.11475", "l": "1.1112", "o": "1.1125", "t": 1578873600, "tm": "2020-01-13 00:00:00", "v": "64887"}, {"c": "1.11285", "h": "1.11455", "l": "1.11035", "o": "1.1135", "t": 1578960000, "tm": "2020-01-14 00:00:00", "v": "75218"}, {"c": "1.1151", "h": "1.11645", "l": "1.1118", "o": "1.113", "t": 1579046400, "tm": "2020-01-15 00:00:00", "v": "73333"}, {"c": "1.1137", "h": "1.1173", "l": "1.11275", "o": "1.1151", "t": 1579132800, "tm": "2020-01-16 00:00:00", "v": "63959"}, {"c": "1.109", "h": "1.11435", "l": "1.10855", "o": "1.11365", "t": 1579219200, "tm": "2020-01-17 00:00:00", "v": "51677"}, {"c": "1.1095", "h": "1.11035", "l": "1.1076", "o": "1.1092", "t": 1579478400, "tm": "2020-01-20 00:00:00", "v": "48779"}, {"c": "1.1084", "h": "1.1119", "l": "1.10805", "o": "1.1095", "t": 1579564800, "tm": "2020-01-21 00:00:00", "v": "59797"}, {"c": "1.1093", "h": "1.1099", "l": "1.10695", "o": "1.1084", "t": 1579651200, "tm": "2020-01-22 00:00:00", "v": "61007"}, {"c": "1.1054", "h": "1.11095", "l": "1.1036", "o": "1.10925", "t": 1579737600, "tm": "2020-01-23 00:00:00", "v": "51043"}, {"c": "1.1025", "h": "1.10625", "l": "1.10195", "o": "1.10545", "t": 1579824000, "tm": "2020-01-24 00:00:00", "v": "56270"}, {"c": "1.1018", "h": "1.1039", "l": "1.1009", "o": "1.1021", "t": 1580083200, "tm": "2020-01-27 00:00:00", "v": "66680"}, {"c": "1.1022", "h": "1.1026", "l": "1.09975", "o": "1.1019", "t": 1580169600, "tm": "2020-01-28 00:00:00", "v": "63235"}, {"c": "1.1011", "h": "1.10285", "l": "1.09915", "o": "1.1022", "t": 1580256000, "tm": "2020-01-29 00:00:00", "v": "66914"}, {"c": "1.1032", "h": "1.104", "l": "1.10055", "o": "1.101", "t": 1580342400, "tm": "2020-01-30 00:00:00", "v": "71937"}, {"c": "1.1094", "h": "1.1097", "l": "1.10165", "o": "1.1032", "t": 1580428800, "tm": "2020-01-31 00:00:00", "v": "69733"}, {"c": "1.106", "h": "1.1096", "l": "1.10355", "o": "1.1092", "t": 1580688000, "tm": "2020-02-03 00:00:00", "v": "63798"}, {"c": "1.1044", "h": "1.1065", "l": "1.10325", "o": "1.10595", "t": 1580774400, "tm": "2020-02-04 00:00:00", "v": "71233"}, {"c": "1.0999", "h": "1.10485", "l": "1.0993", "o": "1.10445", "t": 1580860800, "tm": "2020-02-05 00:00:00", "v": "71873"}, {"c": "1.09805", "h": "1.10145", "l": "1.0964", "o": "1.09995", "t": 1580947200, "tm": "2020-02-06 00:00:00", "v": "72549"}, {"c": "1.0945", "h": "1.0986", "l": "1.09415", "o": "1.0983", "t": 1581033600, "tm": "2020-02-07 00:00:00", "v": "69255"}, {"c": "1.0911", "h": "1.09585", "l": "1.09075", "o": "1.0951", "t": 1581292800, "tm": "2020-02-10 00:00:00", "v": "75919"}, {"c": "1.0916", "h": "1.09255", "l": "1.08905", "o": "1.0911", "t": 1581379200, "tm": "2020-02-11 00:00:00", "v": "73604"}, {"c": "1.0873", "h": "1.09265", "l": "1.08645", "o": "1.0916", "t": 1581465600, "tm": "2020-02-12 00:00:00", "v": "71511"}, {"c": "1.08415", "h": "1.08895", "l": "1.08335", "o": "1.0874", "t": 1581552000, "tm": "2020-02-13 00:00:00", "v": "74394"}, {"c": "1.0832", "h": "1.0862", "l": "1.0827", "o": "1.0841", "t": 1581638400, "tm": "2020-02-14 00:00:00", "v": "71959"}, {"c": "1.08355", "h": "1.08515", "l": "1.0821", "o": "1.0832", "t": 1581897600, "tm": "2020-02-17 00:00:00", "v": "57614"}, {"c": "1.0792", "h": "1.08385", "l": "1.0785", "o": "1.0838", "t": 1581984000, "tm": "2020-02-18 00:00:00", "v": "79001"}, {"c": "1.0806", "h": "1.08125", "l": "1.07815", "o": "1.07915", "t": 1582070400, "tm": "2020-02-19 00:00:00", "v": "78967"}, {"c": "1.0785", "h": "1.08215", "l": "1.07765", "o": "1.0806", "t": 1582156800, "tm": "2020-02-20 00:00:00", "v": "79085"}, {"c": "1.0845", "h": "1.08645", "l": "1.07835", "o": "1.0785", "t": 1582243200, "tm": "2020-02-21 00:00:00", "v": "72949"}, {"c": "1.0854", "h": "1.08725", "l": "1.0805", "o": "1.0841", "t": 1582502400, "tm": "2020-02-24 00:00:00", "v": "80310"}, {"c": "1.0881", "h": "1.0891", "l": "1.08295", "o": "1.08535", "t": 1582588800, "tm": "2020-02-25 00:00:00", "v": "95389"}, {"c": "1.0881", "h": "1.09095", "l": "1.08545", "o": "1.0881", "t": 1582675200, "tm": "2020-02-26 00:00:00", "v": "96531"}, {"c": "1.1", "h": "1.10065", "l": "1.08785", "o": "1.0881", "t": 1582761600, "tm": "2020-02-27 00:00:00", "v": "96549"}, {"c": "1.10265", "h": "1.1054", "l": "1.09505", "o": "1.1001", "t": 1582848000, "tm": "2020-02-28 00:00:00", "v": "103279"}, {"c": "1.1134", "h": "1.11865", "l": "1.1003", "o": "1.1003", "t": 1583107200, "tm": "2020-03-02 00:00:00", "v": "112463"}, {"c": "1.1173", "h": "1.12135", "l": "1.1095", "o": "1.1133", "t": 1583193600, "tm": "2020-03-03 00:00:00", "v": "111384"}, {"c": "1.1136", "h": "1.11875", "l": "1.10945", "o": "1.1172", "t": 1583280000, "tm": "2020-03-04 00:00:00", "v": "99181"}, {"c": "1.1241", "h": "1.12455", "l": "1.1119", "o": "1.1136", "t": 1583366400, "tm": "2020-03-05 00:00:00", "v": "95961"}, {"c": "1.1286", "h": "1.1356", "l": "1.12115", "o": "1.1238", "t": 1583452800, "tm": "2020-03-06 00:00:00", "v": "120580"}, {"c": "1.1449", "h": "1.1494", "l": "1.1284", "o": "1.1292", "t": 1583712000, "tm": "2020-03-09 00:00:00", "v": "140674"}, {"c": "1.128", "h": "1.1459", "l": "1.12745", "o": "1.1446", "t": 1583798400, "tm": "2020-03-10 00:00:00", "v": "130037"}, {"c": "1.1269", "h": "1.13675", "l": "1.1257", "o": "1.12805", "t": 1583884800, "tm": "2020-03-11 00:00:00", "v": "136103"}, {"c": "1.1185", "h": "1.1334", "l": "1.1055", "o": "1.1269", "t": 1583971200, "tm": "2020-03-12 00:00:00", "v": "141448"}, {"c": "1.11065", "h": "1.12225", "l": "1.1054", "o": "1.1185", "t": 1584057600, "tm": "2020-03-13 00:00:00", "v": "150516"}, {"c": "1.1183", "h": "1.12375", "l": "1.10455", "o": "1.1085", "t": 1584316800, "tm": "2020-03-16 00:00:00", "v": "140336"}, {"c": "1.0997", "h": "1.119", "l": "1.09545", "o": "1.11825", "t": 1584403200, "tm": "2020-03-17 00:00:00", "v": "135645"}, {"c": "1.0915", "h": "1.10455", "l": "1.08015", "o": "1.0997", "t": 1584489600, "tm": "2020-03-18 00:00:00", "v": "142398"}, {"c": "1.06915", "h": "1.0982", "l": "1.06545", "o": "1.0915", "t": 1584576000, "tm": "2020-03-19 00:00:00", "v": "154121"}, {"c": "1.0695", "h": "1.0832", "l": "1.0637", "o": "1.06915", "t": 1584662400, "tm": "2020-03-20 00:00:00", "v": "157423"}, {"c": "1.0723", "h": "1.08285", "l": "1.06365", "o": "1.0696", "t": 1584921600, "tm": "2020-03-23 00:00:00", "v": "142132"}, {"c": "1.0789", "h": "1.0889", "l": "1.0722", "o": "1.07255", "t": 1585008000, "tm": "2020-03-24 00:00:00", "v": "140567"}, {"c": "1.0882", "h": "1.08945", "l": "1.07605", "o": "1.0789", "t": 1585094400, "tm": "2020-03-25 00:00:00", "v": "141885"}, {"c": "1.103", "h": "1.10595", "l": "1.08695", "o": "1.0881", "t": 1585180800, "tm": "2020-03-26 00:00:00", "v": "135712"}, {"c": "1.1142", "h": "1.11475", "l": "1.0953", "o": "1.103", "t": 1585267200, "tm": "2020-03-27 00:00:00", "v": "137099"}, {"c": "1.1048", "h": "1.1145", "l": "1.10095", "o": "1.11365", "t": 1585526400, "tm": "2020-03-30 00:00:00", "v": "120257"}, {"c": "1.1031", "h": "1.10555", "l": "1.0926", "o": "1.1049", "t": 1585612800, "tm": "2020-03-31 00:00:00", "v": "132034"}, {"c": "1.0964", "h": "1.104", "l": "1.09025", "o": "1.1031", "t": 1585699200, "tm": "2020-04-01 00:00:00", "v": "127791"}, {"c": "1.0858", "h": "1.09695", "l": "1.08205", "o": "1.0964", "t": 1585785600, "tm": "2020-04-02 00:00:00", "v": "131828"}, {"c": "1.0809", "h": "1.08655", "l": "1.07725", "o": "1.0858", "t": 1585872000, "tm": "2020-04-03 00:00:00", "v": "114659"}, {"c": "1.0793", "h": "1.08355", "l": "1.07675", "o": "1.08135", "t": 1586131200, "tm": "2020-04-06 00:00:00", "v": "115256"}, {"c": "1.0891", "h": "1.09255", "l": "1.07835", "o": "1.0793", "t": 1586217600, "tm": "2020-04-07 00:00:00", "v": "140115"}, {"c": "1.0858", "h": "1.09035", "l": "1.08295", "o": "1.0891", "t": 1586304000, "tm": "2020-04-08 00:00:00", "v": "128091"}, {"c": "1.0929", "h": "1.09525", "l": "1.08405", "o": "1.0857", "t": 1586390400, "tm": "2020-04-09 00:00:00", "v": "116284"}, {"c": "1.0936", "h": "1.09525", "l": "1.09185", "o": "1.093", "t": 1586476800, "tm": "2020-04-10 00:00:00", "v": "62114"}, {"c": "1.0915", "h": "1.09685", "l": "1.0892", "o": "1.09415", "t": 1586736000, "tm": "2020-04-13 00:00:00", "v": "62167"}, {"c": "1.0981", "h": "1.0988", "l": "1.0904", "o": "1.0914", "t": 1586822400, "tm": "2020-04-14 00:00:00", "v": "110467"}, {"c": "1.0909", "h": "1.09915", "l": "1.08565", "o": "1.09805", "t": 1586908800, "tm": "2020-04-15 00:00:00", "v": "111305"}, {"c": "1.0837", "h": "1.09135", "l": "1.08165", "o": "1.09105", "t": 1586995200, "tm": "2020-04-16 00:00:00", "v": "128705"}, {"c": "1.0878", "h": "1.08935", "l": "1.08115", "o": "1.0835", "t": 1587081600, "tm": "2020-04-17 00:00:00", "v": "129159"}, {"c": "1.0863", "h": "1.08975", "l": "1.08405", "o": "1.08745", "t": 1587340800, "tm": "2020-04-20 00:00:00", "v": "114313"}, {"c": "1.0858", "h": "1.08815", "l": "1.08155", "o": "1.0862", "t": 1587427200, "tm": "2020-04-21 00:00:00", "v": "121506"}, {"c": "1.0823", "h": "1.08865", "l": "1.0802", "o": "1.0857", "t": 1587513600, "tm": "2020-04-22 00:00:00", "v": "114976"}, {"c": "1.0778", "h": "1.08475", "l": "1.07555", "o": "1.08235", "t": 1587600000, "tm": "2020-04-23 00:00:00", "v": "121039"}, {"c": "1.0821", "h": "1.08305", "l": "1.07265", "o": "1.0778", "t": 1587686400, "tm": "2020-04-24 00:00:00", "v": "119648"}, {"c": "1.083", "h": "1.08625", "l": "1.0808", "o": "1.0809", "t": 1587945600, "tm": "2020-04-27 00:00:00", "v": "113185"}, {"c": "1.082", "h": "1.08895", "l": "1.08095", "o": "1.08295", "t": 1588032000, "tm": "2020-04-28 00:00:00", "v": "132701"}, {"c": "1.0875", "h": "1.08865", "l": "1.08175", "o": "1.08195", "t": 1588118400, "tm": "2020-04-29 00:00:00", "v": "131413"}, {"c": "1.0957", "h": "1.0973", "l": "1.08325", "o": "1.0872", "t": 1588204800, "tm": "2020-04-30 00:00:00", "v": "122441"}, {"c": "1.0985", "h": "1.10185", "l": "1.0934", "o": "1.0956", "t": 1588291200, "tm": "2020-05-01 00:00:00", "v": "91354"}, {"c": "1.0908", "h": "1.09805", "l": "1.0895", "o": "1.09805", "t": 1588550400, "tm": "2020-05-04 00:00:00", "v": "87750"}, {"c": "1.084", "h": "1.09265", "l": "1.08255", "o": "1.0907", "t": 1588636800, "tm": "2020-05-05 00:00:00", "v": "100327"}, {"c": "1.0795", "h": "1.08485", "l": "1.07815", "o": "1.08365", "t": 1588723200, "tm": "2020-05-06 00:00:00", "v": "106060"}, {"c": "1.0834", "h": "1.0835", "l": "1.0766", "o": "1.0795", "t": 1588809600, "tm": "2020-05-07 00:00:00", "v": "109251"}, {"c": "1.08405", "h": "1.08765", "l": "1.08145", "o": "1.0833", "t": 1588896000, "tm": "2020-05-08 00:00:00", "v": "104967"}, {"c": "1.0808", "h": "1.0851", "l": "1.08005", "o": "1.0838", "t": 1589155200, "tm": "2020-05-11 00:00:00", "v": "96777"}, {"c": "1.0848", "h": "1.08855", "l": "1.0784", "o": "1.0807", "t": 1589241600, "tm": "2020-05-12 00:00:00", "v": "125119"}, {"c": "1.08175", "h": "1.0897", "l": "1.0811", "o": "1.0848", "t": 1589328000, "tm": "2020-05-13 00:00:00", "v": "119987"}, {"c": "1.0805", "h": "1.08255", "l": "1.07745", "o": "1.08185", "t": 1589414400, "tm": "2020-05-14 00:00:00", "v": "115473"}, {"c": "1.0816", "h": "1.0851", "l": "1.07885", "o": "1.0805", "t": 1589500800, "tm": "2020-05-15 00:00:00", "v": "98475"}, {"c": "1.09135", "h": "1.09275", "l": "1.07995", "o": "1.0816", "t": 1589760000, "tm": "2020-05-18 00:00:00", "v": "90577"}, {"c": "1.0923", "h": "1.09775", "l": "1.09015", "o": "1.0913", "t": 1589846400, "tm": "2020-05-19 00:00:00", "v": "112060"}, {"c": "1.0979", "h": "1.1", "l": "1.09175", "o": "1.0928", "t": 1589932800, "tm": "2020-05-20 00:00:00", "v": "118498"}, {"c": "1.09505", "h": "1.10095", "l": "1.09365", "o": "1.09795", "t": 1590019200, "tm": "2020-05-21 00:00:00", "v": "109495"}, {"c": "1.0902", "h": "1.09605", "l": "1.0885", "o": "1.09495", "t": 1590105600, "tm": "2020-05-22 00:00:00", "v": "118976"}, {"c": "1.09", "h": "1.09155", "l": "1.087", "o": "1.09025", "t": 1590364800, "tm": "2020-05-25 00:00:00", "v": "65120"}, {"c": "1.09815", "h": "1.09965", "l": "1.08915", "o": "1.08995", "t": 1590451200, "tm": "2020-05-26 00:00:00", "v": "100331"}, {"c": "1.1005", "h": "1.10315", "l": "1.09335", "o": "1.0983", "t": 1590537600, "tm": "2020-05-27 00:00:00", "v": "123597"}, {"c": "1.10775", "h": "1.1094", "l": "1.0991", "o": "1.10045", "t": 1590624000, "tm": "2020-05-28 00:00:00", "v": "121592"}, {"c": "1.1099", "h": "1.1146", "l": "1.10695", "o": "1.10775", "t": 1590710400, "tm": "2020-05-29 00:00:00", "v": "119663"}, {"c": "1.1135", "h": "1.11545", "l": "1.10955", "o": "1.10965", "t": 1590969600, "tm": "2020-06-01 00:00:00", "v": "103972"}, {"c": "1.1171", "h": "1.11965", "l": "1.11145", "o": "1.1137", "t": 1591056000, "tm": "2020-06-02 00:00:00", "v": "128724"}, {"c": "1.1234", "h": "1.12575", "l": "1.11665", "o": "1.1172", "t": 1591142400, "tm": "2020-06-03 00:00:00", "v": "136514"}, {"c": "1.1338", "h": "1.13625", "l": "1.11945", "o": "1.1234", "t": 1591228800, "tm": "2020-06-04 00:00:00", "v": "123943"}, {"c": "1.1286", "h": "1.13845", "l": "1.1278", "o": "1.13375", "t": 1591315200, "tm": "2020-06-05 00:00:00", "v": "118685"}, {"c": "1.1294", "h": "1.13205", "l": "1.12675", "o": "1.1289", "t": 1591574400, "tm": "2020-06-08 00:00:00", "v": "92167"}, {"c": "1.1342", "h": "1.13655", "l": "1.12405", "o": "1.1297", "t": 1591660800, "tm": "2020-06-09 00:00:00", "v": "119404"}, {"c": "1.1371", "h": "1.1423", "l": "1.13225", "o": "1.134", "t": 1591747200, "tm": "2020-06-10 00:00:00", "v": "120983"}, {"c": "1.1299", "h": "1.1404", "l": "1.12875", "o": "1.13735", "t": 1591833600, "tm": "2020-06-11 00:00:00", "v": "144068"}, {"c": "1.1256", "h": "1.1341", "l": "1.1212", "o": "1.1299", "t": 1591920000, "tm": "2020-06-12 00:00:00", "v": "119101"}, {"c": "1.1324", "h": "1.1334", "l": "1.1226", "o": "1.12455", "t": 1592179200, "tm": "2020-06-15 00:00:00", "v": "127446"}, {"c": "1.1264", "h": "1.13535", "l": "1.12275", "o": "1.1325", "t": 1592265600, "tm": "2020-06-16 00:00:00", "v": "120585"}, {"c": "1.12445", "h": "1.1295", "l": "1.12065", "o": "1.12645", "t": 1592352000, "tm": "2020-06-17 00:00:00", "v": "137105"}, {"c": "1.12035", "h": "1.12635", "l": "1.11855", "o": "1.1244", "t": 1592438400, "tm": "2020-06-18 00:00:00", "v": "125417"}, {"c": "1.1177", "h": "1.1255", "l": "1.1168", "o": "1.1205", "t": 1592524800, "tm": "2020-06-19 00:00:00", "v": "122263"}, {"c": "1.126", "h": "1.12705", "l": "1.1168", "o": "1.1185", "t": 1592784000, "tm": "2020-06-22 00:00:00", "v": "109666"}, {"c": "1.1308", "h": "1.135", "l": "1.12325", "o": "1.12595", "t": 1592870400, "tm": "2020-06-23 00:00:00", "v": "131867"}, {"c": "1.1252", "h": "1.13265", "l": "1.1248", "o": "1.13085", "t": 1592956800, "tm": "2020-06-24 00:00:00", "v": "121539"}, {"c": "1.1218", "h": "1.1261", "l": "1.119", "o": "1.12515", "t": 1593043200, "tm": "2020-06-25 00:00:00", "v": "130048"}, {"c": "1.1219", "h": "1.12405", "l": "1.11945", "o": "1.1218", "t": 1593129600, "tm": "2020-06-26 00:00:00", "v": "117836"}, {"c": "1.1242", "h": "1.1289", "l": "1.12165", "o": "1.1227", "t": 1593388800, "tm": "2020-06-29 00:00:00", "v": "120436"}, {"c": "1.1233", "h": "1.12625", "l": "1.11905", "o": "1.12415", "t": 1593475200, "tm": "2020-06-30 00:00:00", "v": "125659"}, {"c": "1.1252", "h": "1.12755", "l": "1.11845", "o": "1.12325", "t": 1593561600, "tm": "2020-07-01 00:00:00", "v": "98491"}, {"c": "1.124", "h": "1.13035", "l": "1.12225", "o": "1.1252", "t": 1593648000, "tm": "2020-07-02 00:00:00", "v": "109991"}, {"c": "1.1249", "h": "1.1254", "l": "1.12185", "o": "1.1239", "t": 1593734400, "tm": "2020-07-03 00:00:00", "v": "117325"}, {"c": "1.1309", "h": "1.13465", "l": "1.124", "o": "1.1242", "t": 1593993600, "tm": "2020-07-06 00:00:00", "v": "92457"}, {"c": "1.1272", "h": "1.13335", "l": "1.12585", "o": "1.1308", "t": 1594080000, "tm": "2020-07-07 00:00:00", "v": "118909"}, {"c": "1.133", "h": "1.13525", "l": "1.1262", "o": "1.1273", "t": 1594166400, "tm": "2020-07-08 00:00:00", "v": "114706"}, {"c": "1.1283", "h": "1.13715", "l": "1.12795", "o": "1.1329", "t": 1594252800, "tm": "2020-07-09 00:00:00", "v": "102918"}, {"c": "1.13", "h": "1.13255", "l": "1.12545", "o": "1.1285", "t": 1594339200, "tm": "2020-07-10 00:00:00", "v": "92409"}, {"c": "1.1342", "h": "1.13755", "l": "1.1297", "o": "1.12995", "t": 1594598400, "tm": "2020-07-13 00:00:00", "v": "94594"}, {"c": "1.1398", "h": "1.14095", "l": "1.13245", "o": "1.1343", "t": 1594684800, "tm": "2020-07-14 00:00:00", "v": "122195"}, {"c": "1.14115", "h": "1.14525", "l": "1.13905", "o": "1.14", "t": 1594771200, "tm": "2020-07-15 00:00:00", "v": "114090"}, {"c": "1.1384", "h": "1.1443", "l": "1.137", "o": "1.1411", "t": 1594857600, "tm": "2020-07-16 00:00:00", "v": "117849"}, {"c": "1.1428", "h": "1.14445", "l": "1.1377", "o": "1.1384", "t": 1594944000, "tm": "2020-07-17 00:00:00", "v": "104770"}, {"c": "1.1446", "h": "1.14685", "l": "1.14015", "o": "1.141", "t": 1595203200, "tm": "2020-07-20 00:00:00", "v": "91328"}, {"c": "1.15275", "h": "1.15405", "l": "1.14225", "o": "1.14475", "t": 1595289600, "tm": "2020-07-21 00:00:00", "v": "91414"}, {"c": "1.157", "h": "1.16015", "l": "1.15065", "o": "1.15275", "t": 1595376000, "tm": "2020-07-22 00:00:00", "v": "98974"}, {"c": "1.1596", "h": "1.16275", "l": "1.15395", "o": "1.1575", "t": 1595462400, "tm": "2020-07-23 00:00:00", "v": "101831"}, {"c": "1.1656", "h": "1.16595", "l": "1.15805", "o": "1.1597", "t": 1595548800, "tm": "2020-07-24 00:00:00", "v": "107480"}, {"c": "1.17515", "h": "1.1782", "l": "1.1637", "o": "1.16465", "t": 1595808000, "tm": "2020-07-27 00:00:00", "v": "102172"}, {"c": "1.1716", "h": "1.17745", "l": "1.16985", "o": "1.1753", "t": 1595894400, "tm": "2020-07-28 00:00:00", "v": "103296"}, {"c": "1.1792", "h": "1.1807", "l": "1.17135", "o": "1.1718", "t": 1595980800, "tm": "2020-07-29 00:00:00", "v": "99767"}, {"c": "1.1847", "h": "1.1849", "l": "1.17305", "o": "1.1788", "t": 1596067200, "tm": "2020-07-30 00:00:00", "v": "119558"}, {"c": "1.1776", "h": "1.19095", "l": "1.176", "o": "1.1846", "t": 1596153600, "tm": "2020-07-31 00:00:00", "v": "111286"}, {"c": "1.1763", "h": "1.17975", "l": "1.1696", "o": "1.1783", "t": 1596412800, "tm": "2020-08-03 00:00:00", "v": "97011"}, {"c": "1.1802", "h": "1.1807", "l": "1.17205", "o": "1.1765", "t": 1596499200, "tm": "2020-08-04 00:00:00", "v": "90138"}, {"c": "1.1863", "h": "1.1906", "l": "1.17925", "o": "1.1802", "t": 1596585600, "tm": "2020-08-05 00:00:00", "v": "106237"}, {"c": "1.18765", "h": "1.19165", "l": "1.18175", "o": "1.1863", "t": 1596672000, "tm": "2020-08-06 00:00:00", "v": "121220"}, {"c": "1.1788", "h": "1.18845", "l": "1.1755", "o": "1.1877", "t": 1596758400, "tm": "2020-08-07 00:00:00", "v": "102810"}, {"c": "1.1736", "h": "1.18025", "l": "1.17355", "o": "1.1788", "t": 1597017600, "tm": "2020-08-10 00:00:00", "v": "87410"}, {"c": "1.1739", "h": "1.1808", "l": "1.1722", "o": "1.17375", "t": 1597104000, "tm": "2020-08-11 00:00:00", "v": "101792"}, {"c": "1.1782", "h": "1.18155", "l": "1.17105", "o": "1.174", "t": 1597190400, "tm": "2020-08-12 00:00:00", "v": "81068"}, {"c": "1.1812", "h": "1.1865", "l": "1.17805", "o": "1.1786", "t": 1597276800, "tm": "2020-08-13 00:00:00", "v": "93335"}, {"c": "1.1841", "h": "1.18515", "l": "1.17825", "o": "1.1815", "t": 1597363200, "tm": "2020-08-14 00:00:00", "v": "78128"}, {"c": "1.1869", "h": "1.18815", "l": "1.18285", "o": "1.184", "t": 1597622400, "tm": "2020-08-17 00:00:00", "v": "86602"}, {"c": "1.1929", "h": "1.19665", "l": "1.1865", "o": "1.18705", "t": 1597708800, "tm": "2020-08-18 00:00:00", "v": "105448"}, {"c": "1.1836", "h": "1.19535", "l": "1.18295", "o": "1.1931", "t": 1597795200, "tm": "2020-08-19 00:00:00", "v": "110236"}, {"c": "1.1859", "h": "1.18695", "l": "1.18015", "o": "1.1839", "t": 1597881600, "tm": "2020-08-20 00:00:00", "v": "114054"}, {"c": "1.1795", "h": "1.18835", "l": "1.1754", "o": "1.186", "t": 1597968000, "tm": "2020-08-21 00:00:00", "v": "98559"}, {"c": "1.1787", "h": "1.18505", "l": "1.17835", "o": "1.1787", "t": 1598227200, "tm": "2020-08-24 00:00:00", "v": "86277"}, {"c": "1.1833", "h": "1.1845", "l": "1.1783", "o": "1.1793", "t": 1598313600, "tm": "2020-08-25 00:00:00", "v": "99431"}, {"c": "1.1829", "h": "1.1841", "l": "1.17715", "o": "1.18345", "t": 1598400000, "tm": "2020-08-26 00:00:00", "v": "99764"}, {"c": "1.1821", "h": "1.19015", "l": "1.1762", "o": "1.1831", "t": 1598486400, "tm": "2020-08-27 00:00:00", "v": "104950"}, {"c": "1.1903", "h": "1.19205", "l": "1.18105", "o": "1.1822", "t": 1598572800, "tm": "2020-08-28 00:00:00", "v": "95955"}, {"c": "1.1936", "h": "1.19665", "l": "1.18835", "o": "1.1899", "t": 1598832000, "tm": "2020-08-31 00:00:00", "v": "86895"}, {"c": "1.191", "h": "1.20125", "l": "1.19005", "o": "1.1936", "t": 1598918400, "tm": "2020-09-01 00:00:00", "v": "103881"}, {"c": "1.1853", "h": "1.19305", "l": "1.18215", "o": "1.1911", "t": 1599004800, "tm": "2020-09-02 00:00:00", "v": "102486"}, {"c": "1.1849", "h": "1.18655", "l": "1.17885", "o": "1.1852", "t": 1599091200, "tm": "2020-09-03 00:00:00", "v": "106373"}, {"c": "1.1838", "h": "1.18655", "l": "1.17805", "o": "1.185", "t": 1599177600, "tm": "2020-09-04 00:00:00", "v": "99673"}, {"c": "1.1817", "h": "1.18495", "l": "1.18115", "o": "1.1833", "t": 1599436800, "tm": "2020-09-07 00:00:00", "v": "72672"}, {"c": "1.1779", "h": "1.18285", "l": "1.1765", "o": "1.1817", "t": 1599523200, "tm": "2020-09-08 00:00:00", "v": "108805"}, {"c": "1.1802", "h": "1.18345", "l": "1.17525", "o": "1.1777", "t": 1599609600, "tm": "2020-09-09 00:00:00", "v": "107963"}, {"c": "1.1813", "h": "1.19175", "l": "1.18", "o": "1.1801", "t": 1599696000, "tm": "2020-09-10 00:00:00", "v": "97144"}, {"c": "1.1845", "h": "1.18755", "l": "1.18125", "o": "1.1814", "t": 1599782400, "tm": "2020-09-11 00:00:00", "v": "85262"}, {"c": "1.1868", "h": "1.18885", "l": "1.18295", "o": "1.184", "t": 1600041600, "tm": "2020-09-14 00:00:00", "v": "66103"}, {"c": "1.1845", "h": "1.19005", "l": "1.1839", "o": "1.1865", "t": 1600128000, "tm": "2020-09-15 00:00:00", "v": "74089"}, {"c": "1.1814", "h": "1.18835", "l": "1.1787", "o": "1.185", "t": 1600214400, "tm": "2020-09-16 00:00:00", "v": "99171"}, {"c": "1.1847", "h": "1.1854", "l": "1.17365", "o": "1.1816", "t": 1600300800, "tm": "2020-09-17 00:00:00", "v": "120764"}, {"c": "1.1837", "h": "1.1871", "l": "1.18265", "o": "1.18485", "t": 1600387200, "tm": "2020-09-18 00:00:00", "v": "101557"}, {"c": "1.1769", "h": "1.18725", "l": "1.1731", "o": "1.1848", "t": 1600646400, "tm": "2020-09-21 00:00:00", "v": "138819"}, {"c": "1.1706", "h": "1.17745", "l": "1.16915", "o": "1.17705", "t": 1600732800, "tm": "2020-09-22 00:00:00", "v": "126680"}, {"c": "1.1659", "h": "1.17195", "l": "1.16505", "o": "1.17075", "t": 1600819200, "tm": "2020-09-23 00:00:00", "v": "138944"}, {"c": "1.1672", "h": "1.16885", "l": "1.1626", "o": "1.16605", "t": 1600905600, "tm": "2020-09-24 00:00:00", "v": "137593"}, {"c": "1.163", "h": "1.16855", "l": "1.1612", "o": "1.16705", "t": 1600992000, "tm": "2020-09-25 00:00:00", "v": "110253"}, {"c": "1.1664", "h": "1.1679", "l": "1.16145", "o": "1.1638", "t": 1601251200, "tm": "2020-09-28 00:00:00", "v": "66525"}, {"c": "1.1742", "h": "1.17465", "l": "1.16605", "o": "1.1666", "t": 1601337600, "tm": "2020-09-29 00:00:00", "v": "83241"}, {"c": "1.1718", "h": "1.1756", "l": "1.16845", "o": "1.17425", "t": 1601424000, "tm": "2020-09-30 00:00:00", "v": "97735"}, {"c": "1.1747", "h": "1.17705", "l": "1.17165", "o": "1.17195", "t": 1601510400, "tm": "2020-10-01 00:00:00", "v": "124498"}, {"c": "1.1713", "h": "1.1751", "l": "1.16955", "o": "1.1748", "t": 1601596800, "tm": "2020-10-02 00:00:00", "v": "133921"}, {"c": "1.1781", "h": "1.17985", "l": "1.17065", "o": "1.1716", "t": 1601856000, "tm": "2020-10-05 00:00:00", "v": "89848"}, {"c": "1.1734", "h": "1.18085", "l": "1.17315", "o": "1.1782", "t": 1601942400, "tm": "2020-10-06 00:00:00", "v": "116862"}, {"c": "1.176", "h": "1.1783", "l": "1.17245", "o": "1.1735", "t": 1602028800, "tm": "2020-10-07 00:00:00", "v": "110947"}, {"c": "1.1758", "h": "1.17825", "l": "1.17325", "o": "1.1762", "t": 1602115200, "tm": "2020-10-08 00:00:00", "v": "123235"}, {"c": "1.1824", "h": "1.18325", "l": "1.17525", "o": "1.1759", "t": 1602201600, "tm": "2020-10-09 00:00:00", "v": "80073"}, {"c": "1.1813", "h": "1.18275", "l": "1.1786", "o": "1.18195", "t": 1602460800, "tm": "2020-10-12 00:00:00", "v": "93741"}, {"c": "1.1744", "h": "1.1817", "l": "1.17305", "o": "1.1813", "t": 1602547200, "tm": "2020-10-13 00:00:00", "v": "109711"}, {"c": "1.1746", "h": "1.17715", "l": "1.17195", "o": "1.17455", "t": 1602633600, "tm": "2020-10-14 00:00:00", "v": "101994"}, {"c": "1.1706", "h": "1.17595", "l": "1.1688", "o": "1.17475", "t": 1602720000, "tm": "2020-10-15 00:00:00", "v": "93652"}, {"c": "1.1718", "h": "1.17465", "l": "1.16935", "o": "1.1708", "t": 1602806400, "tm": "2020-10-16 00:00:00", "v": "99815"}, {"c": "1.1766", "h": "1.17945", "l": "1.17025", "o": "1.17215", "t": 1603065600, "tm": "2020-10-19 00:00:00", "v": "79026"}, {"c": "1.1821", "h": "1.18415", "l": "1.17595", "o": "1.17695", "t": 1603152000, "tm": "2020-10-20 00:00:00", "v": "80901"}, {"c": "1.1861", "h": "1.18815", "l": "1.1821", "o": "1.1822", "t": 1603238400, "tm": "2020-10-21 00:00:00", "v": "102145"}, {"c": "1.1816", "h": "1.18675", "l": "1.18115", "o": "1.1862", "t": 1603324800, "tm": "2020-10-22 00:00:00", "v": "92336"}, {"c": "1.1859", "h": "1.18655", "l": "1.17865", "o": "1.1819", "t": 1603411200, "tm": "2020-10-23 00:00:00", "v": "99231"}, {"c": "1.1808", "h": "1.1861", "l": "1.18025", "o": "1.1858", "t": 1603670400, "tm": "2020-10-26 00:00:00", "v": "84542"}, {"c": "1.1795", "h": "1.18395", "l": "1.17925", "o": "1.181", "t": 1603756800, "tm": "2020-10-27 00:00:00", "v": "87247"}, {"c": "1.1744", "h": "1.17985", "l": "1.17175", "o": "1.17955", "t": 1603843200, "tm": "2020-10-28 00:00:00", "v": "110979"}, {"c": "1.1674", "h": "1.17595", "l": "1.16495", "o": "1.17465", "t": 1603929600, "tm": "2020-10-29 00:00:00", "v": "148256"}, {"c": "1.1647", "h": "1.1705", "l": "1.16395", "o": "1.1674", "t": 1604016000, "tm": "2020-10-30 00:00:00", "v": "116351"}, {"c": "1.164", "h": "1.1658", "l": "1.1622", "o": "1.1658", "t": 1604275200, "tm": "2020-11-02 00:00:00", "v": "87848"}, {"c": "1.1711", "h": "1.17405", "l": "1.16335", "o": "1.16405", "t": 1604361600, "tm": "2020-11-03 00:00:00", "v": "89571"}, {"c": "1.1722", "h": "1.177", "l": "1.16035", "o": "1.1715", "t": 1604448000, "tm": "2020-11-04 00:00:00", "v": "143653"}, {"c": "1.1821", "h": "1.18605", "l": "1.17105", "o": "1.1725", "t": 1604534400, "tm": "2020-11-05 00:00:00", "v": "124198"}, {"c": "1.1872", "h": "1.18915", "l": "1.17945", "o": "1.18265", "t": 1604620800, "tm": "2020-11-06 00:00:00", "v": "133308"}, {"c": "1.1813", "h": "1.19205", "l": "1.17945", "o": "1.18815", "t": 1604880000, "tm": "2020-11-09 00:00:00", "v": "151732"}, {"c": "1.1814", "h": "1.1844", "l": "1.17795", "o": "1.18125", "t": 1604966400, "tm": "2020-11-10 00:00:00", "v": "164313"}, {"c": "1.1777", "h": "1.18345", "l": "1.1745", "o": "1.181", "t": 1605052800, "tm": "2020-11-11 00:00:00", "v": "142790"}, {"c": "1.1804", "h": "1.18235", "l": "1.1758", "o": "1.1777", "t": 1605139200, "tm": "2020-11-12 00:00:00", "v": "136872"}, {"c": "1.1832", "h": "1.1838", "l": "1.17985", "o": "1.1805", "t": 1605225600, "tm": "2020-11-13 00:00:00", "v": "117641"}, {"c": "1.1853", "h": "1.18695", "l": "1.18135", "o": "1.1829", "t": 1605484800, "tm": "2020-11-16 00:00:00", "v": "84283"}, {"c": "1.1861", "h": "1.18945", "l": "1.18425", "o": "1.1852", "t": 1605571200, "tm": "2020-11-17 00:00:00", "v": "87180"}, {"c": "1.1852", "h": "1.18925", "l": "1.18485", "o": "1.1863", "t": 1605657600, "tm": "2020-11-18 00:00:00", "v": "129042"}, {"c": "1.1873", "h": "1.1883", "l": "1.1816", "o": "1.18535", "t": 1605744000, "tm": "2020-11-19 00:00:00", "v": "113764"}, {"c": "1.1853", "h": "1.18915", "l": "1.18495", "o": "1.1875", "t": 1605830400, "tm": "2020-11-20 00:00:00", "v": "103332"}, {"c": "1.184", "h": "1.19065", "l": "1.18", "o": "1.1853", "t": 1606089600, "tm": "2020-11-23 00:00:00", "v": "86119"}, {"c": "1.1888", "h": "1.18965", "l": "1.18365", "o": "1.1842", "t": 1606176000, "tm": "2020-11-24 00:00:00", "v": "96600"}, {"c": "1.1913", "h": "1.19305", "l": "1.18815", "o": "1.1891", "t": 1606262400, "tm": "2020-11-25 00:00:00", "v": "105988"}, {"c": "1.1913", "h": "1.19415", "l": "1.18845", "o": "1.1916", "t": 1606348800, "tm": "2020-11-26 00:00:00", "v": "78635"}, {"c": "1.1962", "h": "1.1965", "l": "1.1907", "o": "1.1914", "t": 1606435200, "tm": "2020-11-27 00:00:00", "v": "72265"}, {"c": "1.1928", "h": "1.20045", "l": "1.19235", "o": "1.19575", "t": 1606694400, "tm": "2020-11-30 00:00:00", "v": "73998"}, {"c": "1.207", "h": "1.20775", "l": "1.1926", "o": "1.1928", "t": 1606780800, "tm": "2020-12-01 00:00:00", "v": "100314"}, {"c": "1.2115", "h": "1.21195", "l": "1.20395", "o": "1.207", "t": 1606867200, "tm": "2020-12-02 00:00:00", "v": "105229"}, {"c": "1.214", "h": "1.21765", "l": "1.21005", "o": "1.2115", "t": 1606953600, "tm": "2020-12-03 00:00:00", "v": "132117"}, {"c": "1.212", "h": "1.21785", "l": "1.211", "o": "1.2142", "t": 1607040000, "tm": "2020-12-04 00:00:00", "v": "131094"}, {"c": "1.2108", "h": "1.2167", "l": "1.2078", "o": "1.21285", "t": 1607299200, "tm": "2020-12-07 00:00:00", "v": "130833"}, {"c": "1.2101", "h": "1.21345", "l": "1.2095", "o": "1.2109", "t": 1607385600, "tm": "2020-12-08 00:00:00", "v": "150889"}, {"c": "1.2081", "h": "1.21485", "l": "1.20585", "o": "1.2103", "t": 1607472000, "tm": "2020-12-09 00:00:00", "v": "134030"}, {"c": "1.2136", "h": "1.21595", "l": "1.20745", "o": "1.20825", "t": 1607558400, "tm": "2020-12-10 00:00:00", "v": "94872"}, {"c": "1.2111", "h": "1.21635", "l": "1.21045", "o": "1.2137", "t": 1607644800, "tm": "2020-12-11 00:00:00", "v": "86531"}, {"c": "1.2143", "h": "1.21775", "l": "1.21155", "o": "1.2131", "t": 1607904000, "tm": "2020-12-14 00:00:00", "v": "92551"}, {"c": "1.2151", "h": "1.21705", "l": "1.21215", "o": "1.21435", "t": 1607990400, "tm": "2020-12-15 00:00:00", "v": "121013"}, {"c": "1.2197", "h": "1.22125", "l": "1.21245", "o": "1.2152", "t": 1608076800, "tm": "2020-12-16 00:00:00", "v": "141790"}, {"c": "1.2266", "h": "1.2274", "l": "1.21905", "o": "1.21995", "t": 1608163200, "tm": "2020-12-17 00:00:00", "v": "118828"}, {"c": "1.2255", "h": "1.2273", "l": "1.2225", "o": "1.2268", "t": 1608249600, "tm": "2020-12-18 00:00:00", "v": "103622"}, {"c": "1.22115", "h": "1.22355", "l": "1.22105", "o": "1.2218", "t": 1608422400, "tm": "2020-12-20 00:00:00", "v": "7955"}, {"c": "1.2175", "h": "1.2227", "l": "1.21295", "o": "1.2212", "t": 1608508800, "tm": "2020-12-21 00:00:00", "v": "91712"}], "status": true} | {"properties": {"code": {"type": "integer"}, "info": {"properties": {"credit_count": {"type": "integer"}, "server_time": {"type": "string"}}, "type": "object"}, "msg": {"type": "string"}, "response": {"properties": {"price_1x_EUR": {"type": "string"}, "price_1x_USD": {"type": "string"}, "total": {"type": "string"}}, "type": "object"}, "status": {"type": "boolean"}}, "type": "object"} |
93ef82fc-fcdd-4636-938b-159d5838dcaa/b3fe7b35-d4f8-4dc5-a7c9-631648b33acb/0/0 | PIX QR-Code | Generate Brazilian digital payment PIX QR-codes | null | Main endpoint | This generates the QRCODE for PIX.
The required parameter is key (which is any valid PIX key, this will be the recipient for the funds).
Other parameters are optional, have strict syntax and are described in the example below. | 200 | Response | {"payload": "00020126410014BR.GOV.BCB.PIX0119example@example.net52040000530398654043.995802BR5909UNDEFINED6009UNDEFINED610880010000621005061234566304265B", "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMQAAADECAYAAADApo5rAAAAAklEQVR4AewaftIAAAjASURBVO3BQY4kx7IgQdVA3f/KOsRfOGzlQCCzms03JmL/YK31fx7WWsfDWut4WGsdD2ut42GtdTystY6HtdbxsNY6HtZax8Na63hYax0Pa63jYa11PKy1joe11vHDh1T+pIoblTcqJpWp4kbljYoblZuKG5WbijdUpoo3VP6kik88rLWOh7XW8bDWOn74sopvUvmbqEwVk8pUcaNyU3GjMlXcqEwVk8qNyk3FTcU3qXzTw1rreFhrHQ9rreOHX6byRsUbKm9UTCpTxaQyVUwqNypTxVQxqUwqn1B5o+JGZar4hMobFb/pYa11PKy1joe11vHD/2dUpopJ5UblpuKbKiaVG5WbihuVqWKq+F/2sNY6HtZax8Na6/jhf0zFpDJV3FRMKp9Quam4UZkqJpWp4hMVk8obFf9lD2ut42GtdTystY4fflnFn6QyVUwqU8Wk8kbFpPJfojJVTBU3Kp+o+Js8rLWOh7XW8bDWOn74MpV/U8WkMlVMKlPFpDJVTCpTxaQyVUwqU8Wk8gmVqeINlaniEyp/s4e11vGw1joe1lqH/YP/MJWp4jepTBXfpDJV3KhMFZPKVPEJlanif8nDWut4WGsdD2ut44cPqUwVk8o3VUwVNypTxaRyUzFVvKFyU/FNKlPFjcpNxVTxhso3Vfymh7XW8bDWOh7WWscPX6ZyUzGpTBU3KlPFpDJVvFHxhsobFZPKjcpUcVMxqbxR8ZsqJpWp4kZlqvimh7XW8bDWOh7WWscP/7KKSeWmYlJ5Q2WquFF5o+JG5abimyomlRuVm4pJ5aZiUpkq/iYPa63jYa11PKy1jh++rOINlaniRuWmYlJ5Q+WmYlKZVN6o+CaVqWKq+KaKSeWm4m/2sNY6HtZax8Na6/jhy1SmiknlDZWbikllqvhNFTcqNypTxScqPqHyRsUnVKaKf9PDWut4WGsdD2utw/7BL1K5qZhUpopJ5RMVk8pU8YbKGxU3KlPFN6lMFTcqNxVvqEwVb6hMFd/0sNY6HtZax8Na6/jhl1W8UTGp3FRMKjcqU8WkclNxUzGp3KhMFZPKJyreUPmEyidUbiomlaniEw9rreNhrXU8rLWOHz6kclNxo3JT8UbFpDJV/E0qJpU3Kr6p4kblpuITFTcqU8U3Pay1joe11vGw1jp++FDFjcpNxY3KVHGjMlXcqHyiYlKZKm5UPqEyVXyTyo3KTcWkclMxqUwVk8pU8YmHtdbxsNY6HtZaxw9fpjJV3KjcVEwq31QxqUwVk8pUMVVMKlPFTcWkclNxozJVfFPFpHJTMalMKjcqv+lhrXU8rLWOh7XW8cOHVKaKSeUTKm9U/KaKT6hMFZ9QmSqmik9UTCqTym+q+JMe1lrHw1rreFhrHT/8soo3VKaKSeUNlaniEypTxU3FjcpUMVVMKp9QmSomlZuKN1SmiqniEypTxSce1lrHw1rreFhrHT/8MpWpYlK5UbmpmFSmihuVG5VPqEwVNyr/pooblaliUpkqJpU3KiaVqeKbHtZax8Na63hYax0/fJnKjcobFZPKpPJNFZPKVDGp3FRMKlPFGyo3KlPFVPGGylTxTRU3Kn/Sw1rreFhrHQ9rrcP+wRepvFFxozJVvKEyVUwqb1RMKm9U/CaVb6qYVN6o+ITKGxWfeFhrHQ9rreNhrXX88JermFRuKt6omFRuVKaKT6h8U8WkMlV8U8UbKjcVU8WNyjc9rLWOh7XW8bDWOuwffEDlpmJSuamYVN6ouFGZKm5UbiomlaniN6n8myomlaniRmWquFGZKr7pYa11PKy1joe11vHDhyomlUnlExWTylTxRsWk8gmVqWJSuamYVKaKSWWquFH5popJ5Q2VqeJv8rDWOh7WWsfDWuuwf/ABlaniRmWquFH5RMWNyk3FpDJVfELljYoblaniRmWqmFSmim9SeaNiUpkqPvGw1joe1lrHw1rr+OHLVKaKqeKNim9SmSpuVKaKSWWqmFRuKm5UblR+U8UbKlPFGxVvVHzTw1rreFhrHQ9rreOHL6uYVKaKN1Smim9SeUPlRmWqmFQ+oTJVfKJiUpkqblQ+UXGjMlVMKlPFJx7WWsfDWut4WGsdP/zlKt5QmSqmikllqvhNFZPKGxWTyhsVn1CZKm5UpopJZaq4UflND2ut42GtdTystY4f/jCVm4pJ5Y2KSeWm4kblpmJSmSomlaniRuWm4kZlUnlDZaqYVKaKqWJSmSr+Jg9rreNhrXU8rLUO+wcfUJkq3lCZKt5Quam4UfmmiknljYo3VKaKG5Wp4kZlqphUpopJZaqYVKaKf9PDWut4WGsdD2ut44c/TGWqmFRuKqaKSeWNikllqphUpopJ5Y2KP6niEyo3Kjcq36QyVXziYa11PKy1joe11mH/4D9MZar4JpWbiknlT6qYVKaK36QyVbyhclMxqUwV3/Sw1joe1lrHw1rr+OFDKn9SxVRxo/JNFZPKTcUbKlPFjcqNylQxqUwVk8onVKaKm4pJ5UZlqvjEw1rreFhrHQ9rreOHL6v4JpUblU9UTCo3KlPFpDKpTBVvqHyiYlJ5o+JG5abimyomlW96WGsdD2ut42Gtdfzwy1TeqPhExY3KpPJGxaQyVbyhclNxozJVTCqfUHlD5ZsqJpXf9LDWOh7WWsfDWuv44X+cylQxqbyhMlVMKjcVb6hMFVPFpDJV3KhMKjcVNypTxY3KJyq+6WGtdTystY6Htdbxw/8YlRuV31QxqUwqU8WkMlXcqLyhclMxqUwqNxX/ZQ9rreNhrXU8rLWOH35ZxW+q+CaVqWJSmVRuKiaVSWWq+ETFpDJV3KjcVEwqk8pvqvhND2ut42GtdTystY4fvkzlT1KZKiaVm4qp4o2Kb1KZKt5QuVGZKt5QmSpuVD6hclPxTQ9rreNhrXU8rLUO+wdrrf/zsNY6HtZax8Na63hYax0Pa63jYa11PKy1joe11vGw1joe1lrHw1rreFhrHQ9rreNhrXU8rLWO/weqpIfrdHjvlAAAAABJRU5ErkJggg=="} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"payload": {"type": "string"}, "image": {"type": "string"}}, "required": ["image", "payload"]} |
61932ab2-eefe-4ae3-8588-e13bf5d7a3c2/d7a0432c-c0bb-4787-83e0-bceec765af40/1/0 | Finazon Forex | Finazon Forex API | 6 | /tickers/forex | Returns a list of forex ticker symbols (pairs). This list is updated daily. | 200 | Example_1 | {"data": [{"ticker": ""}], "meta": {"pagination": {"page": 0, "per_page": 0}}} | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "required": ["ticker"], "properties": {"ticker": {"description": "Instrument symbol (ticker)", "type": "string", "x-go-name": "Ticker"}}, "x-go-package": "gitlab.com/finazon/api/model/entity"}, "x-go-name": "Data"}, "meta": {"type": "object", "properties": {"pagination": {"type": "object", "properties": {"page": {"type": "integer", "format": "int64", "x-go-name": "Page", "minimum": -9223372036854776000, "maximum": 9223372036854776000}, "per_page": {"type": "integer", "format": "int64", "x-go-name": "PerPage", "minimum": -9223372036854776000, "maximum": 9223372036854776000}}, "x-go-package": "gitlab.com/finazon/api/route/description"}}, "x-go-package": "gitlab.com/finazon/api/route/description"}}, "x-go-package": "gitlab.com/finazon/api/route/description"} |
61932ab2-eefe-4ae3-8588-e13bf5d7a3c2/1fbd273a-f0c3-47eb-8401-3e3e1934671b/0/0 | Finazon Forex | Finazon Forex API | 6 | /forex/time_series | This endpoint returns a time series of data points for any given ticker. | 200 | Example_1 | [{"c": 0, "h": 0, "l": 0, "o": 0, "t": 0, "v": 0}] | {"type": "array", "items": {"description": "QuoteItem represents a bar quote at the trading interval", "type": "object", "properties": {"c": {"description": "Closing price at the end of the trading interval", "type": "number", "format": "double", "x-go-name": "C", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "h": {"description": "Highest price reached during the trading interval", "type": "number", "format": "double", "x-go-name": "H", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "l": {"description": "Lowest price reached during the trading interval", "type": "number", "format": "double", "x-go-name": "L", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "o": {"description": "Price at the opening of the trading interval", "type": "number", "format": "double", "x-go-name": "O", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}, "t": {"description": "Timestamp indicating when the trading interval opened", "type": "integer", "format": "int64", "x-go-name": "T", "minimum": -9223372036854776000, "maximum": 9223372036854776000}, "v": {"description": "Trading volume recorded during the trading interval", "type": "number", "format": "double", "x-go-name": "V", "minimum": -1.7976931348623157e+308, "maximum": 1.7976931348623157e+308}}, "x-go-package": "gitlab.com/finazon/api/route/description"}} |
3e21fcb7-5249-4ee1-8db2-fb5b50e48eb8/03bc8ebe-e976-4e79-a00e-80dc828e18e1/0/0 | Turkish Market Exchange Rates | an Api showing all the latest Turkish Market Exchange rates | null | Get Exchange Rates Using Symbols | Get exchange rates using symbols. | 200 | New Example | {"base": "TRY", "lastupdate": "2021-10-31 14:23:49", "message": [{"status": "Success"}], "data": [{"code": "USD", "name": "DOLAR", "rate": "9,5907"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"base": {"type": "string"}, "lastupdate": {"type": "string"}, "message": {"type": "array", "items": {"type": "object", "properties": {"status": {"type": "string"}}, "required": ["status"]}}, "data": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "rate": {"type": "string"}}, "required": ["code", "name", "rate"]}}}, "required": ["base", "data", "lastupdate", "message"]} |
3e21fcb7-5249-4ee1-8db2-fb5b50e48eb8/c915e84e-8c2a-4878-82c9-9212a0f52b73/0/0 | Turkish Market Exchange Rates | an Api showing all the latest Turkish Market Exchange rates | null | Get All Currency Symbols and Name | Displays all currency symbols and names. | 200 | New Example | {"data": [{"code": "gram-altin", "name": "GRAM ALTIN"}, {"code": "USD", "name": "DOLAR"}, {"code": "EUR", "name": "EURO"}, {"code": "GBP", "name": "STERL\u0130N"}, {"code": "XU100", "name": "BIST 100"}, {"code": "bitcoin", "name": "BITCOIN"}, {"code": "gumus", "name": "G\u00dcM\u00dc\u015e"}, {"code": "TAHVIL", "name": "FA\u0130Z"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}}}, "required": ["data"]} |
3e21fcb7-5249-4ee1-8db2-fb5b50e48eb8/7dc144b4-70be-430f-8a69-65d9958f481c/0/0 | Turkish Market Exchange Rates | an Api showing all the latest Turkish Market Exchange rates | null | Get All Exchange Rate | This endpoint will return all Exchange Rate | 200 | New Example | {"lastupdate": "2021-10-30 13:21:41", "data": [{"code": "gram-altin", "name": "GRAM ALTIN", "rate": "550,08"}, {"code": "USD", "name": "DOLAR", "rate": "9,5907"}, {"code": "EUR", "name": "EURO", "rate": "11,1573"}, {"code": "GBP", "name": "STERL\u0130N", "rate": "13,1775"}, {"code": "XU100", "name": "BIST 100", "rate": "1.522"}, {"code": "bitcoin", "name": "BITCOIN", "rate": "$61.439,99"}, {"code": "gumus", "name": "G\u00dcM\u00dc\u015e", "rate": "7,38"}, {"code": "TAHVIL", "name": "FA\u0130Z", "rate": "18,37"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"lastupdate": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "rate": {"type": "string"}}, "required": ["code", "name", "rate"]}}}, "required": ["data", "lastupdate"]} |
5b200293-5eaa-4e04-a919-ab35c98a1e4b/d71ccd20-2f31-4d7f-94ae-6c7e197c6939/0/0 | Forex News Alerts | Instant financial market news update API service for major Forex indexes. Feel free to use our service for mobile / web alerting services or even for you to get the latest FX news. | 8.3 | Get Forex Article Details | This endpoint provides details for a given Forex article token.
Sample request:
GET
{
/api/v1/ForexArticleDetails/3bbfaafd-dd32-4e79-a65f-50730b8ffeb1:AUDUSD-20201013
}
| 400 | Example_1 | {"detail": "", "instance": "", "status": 0, "title": ""} | {"additionalProperties": {"additionalProperties": false, "type": "object"}, "properties": {"detail": {"type": ["string", "null"]}, "instance": {"type": ["string", "null"]}, "status": {"format": "int32", "maximum": 2147483647, "minimum": -2147483648, "type": ["integer", "null"]}, "title": {"type": ["string", "null"]}, "type": {"type": ["string", "null"]}}, "type": "object"} |
5b200293-5eaa-4e04-a919-ab35c98a1e4b/d71ccd20-2f31-4d7f-94ae-6c7e197c6939/1/0 | Forex News Alerts | Instant financial market news update API service for major Forex indexes. Feel free to use our service for mobile / web alerting services or even for you to get the latest FX news. | 8.3 | Get Forex Article Details | This endpoint provides details for a given Forex article token.
Sample request:
GET
{
/api/v1/ForexArticleDetails/3bbfaafd-dd32-4e79-a65f-50730b8ffeb1:AUDUSD-20201013
}
| 401 | Example_1 | {"detail": "", "instance": "", "status": 0, "title": ""} | {"additionalProperties": {"additionalProperties": false, "type": "object"}, "properties": {"detail": {"type": ["string", "null"]}, "instance": {"type": ["string", "null"]}, "status": {"format": "int32", "maximum": 2147483647, "minimum": -2147483648, "type": ["integer", "null"]}, "title": {"type": ["string", "null"]}, "type": {"type": ["string", "null"]}}, "type": "object"} |
5b200293-5eaa-4e04-a919-ab35c98a1e4b/d71ccd20-2f31-4d7f-94ae-6c7e197c6939/3/0 | Forex News Alerts | Instant financial market news update API service for major Forex indexes. Feel free to use our service for mobile / web alerting services or even for you to get the latest FX news. | 8.3 | Get Forex Article Details | This endpoint provides details for a given Forex article token.
Sample request:
GET
{
/api/v1/ForexArticleDetails/3bbfaafd-dd32-4e79-a65f-50730b8ffeb1:AUDUSD-20201013
}
| 200 | Example_1 | {"errorMessage": "N/A", "friendlyFormattedDate": "Friday, 16 October 2020", "result": {"articleId": 16042031, "articlePublicUrl": "https://www.w3livenews.com/Business/2020/10/16/AUD-USD-Year-end-forecast-of-0-73-intact-despite-the-shift-to-QE-\u2013-ANZ/16042031", "articleShortUrl": "https://tinyurl.com/yynpkd8e", "publicationTimeInGmt": "Thursday, 15 October 2020 20:35:25", "publicationTimeStamp": "1602833725", "summary": "On Thursday, October 15, in a key speech, the Reserve Bank of Australia (RBA) gave its strongest hints yet that quantitative easing (QE) was on the ta", "title": "AUD/USD: Year-end forecast of 0.73 intact despite the shift to QE \u2013 ANZ"}, "tokenExpirationTime": "Friday, 16 October 2020 19:50:09", "tokenExpirationTimeInUtc": "Friday, 16 October 2020 08:50:09", "userArticleToken": "775a03ed-3fe8-4636-ab54-60b1c499b9f6:AUDUSD-20201016", "userRequestId": "22"} | {"additionalProperties": false, "properties": {"errorMessage": {"type": ["string", "null"]}, "friendlyFormattedDate": {"type": ["string", "null"]}, "result": {"additionalProperties": false, "properties": {"articleId": {"format": "int32", "maximum": 2147483647, "minimum": -2147483648, "type": "integer"}, "articlePublicUrl": {"type": ["string", "null"]}, "articleShortUrl": {"type": ["string", "null"]}, "publicationTimeInGmt": {"type": ["string", "null"]}, "publicationTimeStamp": {"type": ["string", "null"]}, "summary": {"type": ["string", "null"]}, "title": {"type": ["string", "null"]}}, "type": "object"}, "tokenExpirationTime": {"type": ["string", "null"]}, "tokenExpirationTimeInUtc": {"type": ["string", "null"]}, "userArticleToken": {"type": ["string", "null"]}, "userRequestId": {"type": ["string", "null"]}}, "type": "object"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.