Skip to content

Make (Integromat)

Connect Occult API to 1000+ apps using Make (formerly Integromat).

HTTP Module

Add an HTTP module → Make a request. Set URL to https://api.occultapi.com/api/astro/rashifal/daily/ and method to POST.

Headers

Add X-API-Key and Content-Type: application/json.

headers
{
  "X-API-Key": "YOUR_API_KEY",
  "Content-Type": "application/json"
}

Body

Send a JSON body with the rashi parameter.

body
{
  "rashi": "aries"
}

Scenario Example

Schedule trigger (daily) → HTTP request to Occult API → Filter by zodiac sign → Send email via Gmail module with the horoscope text.

make-scenario
{
  "1": {
    "module": "schedule",
    "filter": { "schedule": "every day at 07:00" }
  },
  "2": {
    "module": "http",
    "filter": {
      "url": "https://api.occultapi.com/api/astro/rashifal/daily/",
      "method": "POST",
      "headers": {
        "X-API-Key": "{{5.access_token}}",
        "Content-Type": "application/json"
      },
      "body": {
        "rashi": "aries"
      }
    }
  },
  "3": {
    "module": "gmail",
    "filter": {
      "to": "user@example.com",
      "subject": "Daily Horoscope",
      "text": "{{2.body.data.get_daily_rashifal.general_prediction}}"
    }
  }
}

Parsing Response

Use the data.get_daily_rashifal.general_prediction field from the JSON response in subsequent modules.

response
{
  "data": {
    "get_daily_rashifal": {
      "general_prediction": "Today is a great day for Aries...",
      "aspects": {
        "love": "Romance is in the air...",
        "career": "New opportunities await...",
        "health": "Stay active and hydrated..."
      },
      "lucky": {
        "color": "Red",
        "number": 7
      }
    }
  }
}