https://github.com/jaredsburrows/finance-api
Finance API
https://github.com/jaredsburrows/finance-api
Last synced: 26 days ago
JSON representation
Finance API
- Host: GitHub
- URL: https://github.com/jaredsburrows/finance-api
- Owner: jaredsburrows
- License: apache-2.0
- Created: 2015-01-17T16:13:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-12T05:51:54.000Z (almost 10 years ago)
- Last Synced: 2025-03-05T00:47:12.276Z (over 1 year ago)
- Language: Java
- Homepage: http://jaredsburrows.github.io/finance-api/javadoc
- Size: 178 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FinanceAPI -- BETA [](https://travis-ci.org/jaredsburrows/finance-api) [](https://coveralls.io/github/jaredsburrows/finance-api?branch=master)
=================
Simple Finance API for viewing stock quotes
## Usage:
buildscript {
repositories {
jcenter()
}
}
dependencies {
compile 'burrows.api:finance-core:0.0.1'
}
## Examples:
// Create basic Request URL
String requestUrl = Builders.request()
.withYahoo() // Set the Company API
.withProperty(Property.Name) // Set the Properties, (eg. Name of the company)
.outputJSON() // Set the Format for the data returned
.getQuote("MSFT") // Add a Quote
.buildURL();
## License:
Copyright (C) 2015 Finance API by Jared Burrows
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.