An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# forecast [![](https://godoc.org/github.com/joefitzgerald/forecast?status.svg)](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)