https://github.com/joefitzgerald/forecast
A Forecast (forecastapp.com) API Client For Go
https://github.com/joefitzgerald/forecast
Last synced: about 1 year ago
JSON representation
A Forecast (forecastapp.com) API Client For Go
- Host: GitHub
- URL: https://github.com/joefitzgerald/forecast
- Owner: joefitzgerald
- License: apache-2.0
- Created: 2017-06-14T23:40:01.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2025-04-19T23:33:25.000Z (about 1 year ago)
- Last Synced: 2025-04-30T17:03:21.820Z (about 1 year ago)
- Language: Go
- Size: 84 KB
- Stars: 14
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# forecast [](https://godoc.org/github.com/joefitzgerald/forecast)
A Forecast ([forecastapp.com](https://www.forecastapp.com)) API Client For Go.
## Usage
To use the Forecast API, you need:
* The URL: https://api.forecastapp.com
* Your Account ID: `https://forecastapp.com/YOUR-ACCOUNT-ID-IS-HERE/projects`
* An [Access Token](http://help.getharvest.com/api-v2/authentication-api/authentication/authentication/): create one [here](https://id.getharvest.com/developers)
Next, construct an API:
```golang
api := forecast.New(
"https://api.forecastapp.com",
"your-accountid-here",
"your-accesstoken-here"
)
```
Then, make use of the API. Consult [godoc](http://godoc.org/github.com/joefitzgerald/forecast) for detailed API documentation.
## License
[Apache 2.0](https://github.com/joefitzgerald/forecast/blob/master/LICENSE)