Skip to content

vitorebatista/horoscopefree

Repository files navigation

🕒 🔯 ♊ horoscopefree

Highlights

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

📖 Usage

GET English: https://horoscopefree.herokuapp.com/daily/
GET Portuguese: https://horoscopefree.herokuapp.com/daily/pt/
GET Spanish: https://horoscopefree.herokuapp.com/daily/es/

💡 Examples

cURL

    curl -X GET \
    'https://horoscopefree.herokuapp.com/daily/'

Python

    import requests

    requests.get('https://horoscopefree.herokuapp.com/daily/'')

Node.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].

License

horoscopefree is licensed under a MIT License.