
AstroAstro Daily Horoscope adds a WordPress widget that displays daily horoscope summaries for the twelve zodiac signs. A dynamic Gutenberg block is also included for sites that use the block editor.
The plugin uses the official AstroAstro API. If no API key is stored yet, the plugin registers the current site domain with AstroAstro and stores the returned key locally. It then uses that key to fetch daily horoscope summaries. If the API is temporarily unavailable, local demonstration texts are displayed so site owners can still test the widget layout.
Main features:
This plugin connects to the AstroAstro API to register the current site and retrieve daily horoscope summaries. This service is required for the plugin to display current daily horoscope content from AstroAstro.
Service provider: AstroAstro, https://astroastro.fr/
Terms of use: https://astroastro.fr/conditions-generales-dutilisation/
Privacy policy: https://astroastro.fr/politique-de-confidentialite/
Data sent during site registration:
site request parameter.User-Agent header generated for the API request.Data sent when fetching horoscopes:
site request parameter.key request parameter.User-Agent header generated for the API request.API endpoints used by this plugin:
https://astroastro.fr/wp-json/astroastro/v1/horoscope-plugin/registerhttps://astroastro.fr/wp-json/astroastro/v1/horoscope-pluginThe plugin does not send visitor names, email addresses, IP addresses, birth dates, or individual visitor horoscope selections to AstroAstro.
If no API key is stored yet, the plugin calls:
POST https://astroastro.fr/wp-json/astroastro/v1/horoscope-plugin/register?site=example.com
If the POST request is not accepted, the plugin tries the same endpoint with GET.
Then, the plugin fetches horoscopes with:
GET https://astroastro.fr/wp-json/astroastro/v1/horoscope-plugin?key=xxx&site=example.com
Expected JSON format:
{
"date": "2026-06-16",
"servedDate": "2026-06-16",
"fallback": false,
"source": "AstroAstro",
"source_url": "https://astroastro.fr/horoscope-du-jour/",
"items": [
{
"sign": "belier",
"name": "Bélier",
"text": "Prenez du recul face aux malentendus pour mieux avancer."
}
]
}
The plugin uses WordPress APIs to: