https://github.com/vitorebatista/horoscopefree
The Astrology API Rest daily horoscope
https://github.com/vitorebatista/horoscopefree
crawler horoscope horoscope-crawler horoscopes-api
Last synced: 8 months ago
JSON representation
The Astrology API Rest daily horoscope
- Host: GitHub
- URL: https://github.com/vitorebatista/horoscopefree
- Owner: vitorebatista
- License: mit
- Created: 2018-12-21T14:29:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T01:56:43.000Z (over 3 years ago)
- Last Synced: 2025-05-08T19:16:45.559Z (about 1 year ago)
- Topics: crawler, horoscope, horoscope-crawler, horoscopes-api
- Language: TypeScript
- Homepage: https://horoscopefree.herokuapp.com/daily
- Size: 366 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
:clock3: :six_pointed_star: :gemini: horoscopefree
## Highlights
- Daily horoscope
- [English](https://horoscopefree.herokuapp.com/daily/), [Portuguese](https://horoscopefree.herokuapp.com/daily/pt/) and [Spanish](https://horoscopefree.herokuapp.com/daily/es/) horoscope
- Simple and free HTTP resquest
## What is horoscopefree?
horoscopefree REST API allows developers to access and integrate the functionality of horoscopefree.com with other applications. The API retrieves daily horoscopes.
Feel free to contribute on [Github](http://github.com/vitorebatista/horoscopefree)
## :book: Usage
GET English: https://horoscopefree.herokuapp.com/daily/
GET Portuguese: https://horoscopefree.herokuapp.com/daily/pt/
GET Spanish: https://horoscopefree.herokuapp.com/daily/es/
## :bulb: Examples
### cURL
```cUrl
curl -X GET \
'https://horoscopefree.herokuapp.com/daily/'
```
#### Python
```python
import requests
requests.get('https://horoscopefree.herokuapp.com/daily/'')
```
### Node.js
```js
var request = require('request');
var options = {
url: 'https://horoscopefree.herokuapp.com/daily/',
method: 'GET'
};
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body);
}
}
request(options, callback);
```
## 🤝 Contributions
Contributions, issues and feature requests are very welcome.
## 💪🏻 Contributors
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
## License
horoscopefree is licensed under a [MIT License](./LICENSE).