Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitorebatista/horoscopefree
The Astrology API Rest daily horoscope
https://github.com/vitorebatista/horoscopefree
crawler horoscope horoscope-crawler horoscopes-api
Last synced: about 1 month 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T01:56:43.000Z (about 2 years ago)
- Last Synced: 2024-04-14T13:05:04.710Z (9 months ago)
- Topics: crawler, horoscope, horoscope-crawler, horoscopes-api
- Language: TypeScript
- Homepage: https://horoscopefree.herokuapp.com/daily
- Size: 366 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- 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 requestsrequests.get('https://horoscopefree.herokuapp.com/daily/'')
```### Node.js
```jsvar 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).