Angel Radiance Oracle Reading

Is it time to have a heart to heart with the Angels?

…to get answers to your most pressing questions or issues?

…to gain courage and a compass for a new direction in life?

…or to find peace and comfort in the midst of a current challenge?

Angel of Possibilities Joyce Huntington

Angel of Possibilities Joyce Huntington

An Angel Radiance Oracle Reading Can Light the Way!

Here’s what happens during a reading

We start by finding a focus for your reading, and from there you’ll be brought into sacred communion with the Angelic realm and attuned to their Divine Presence.

As a sensitive channel and bridge to the Divine I see, hear, and sense the Angels and communicate their messages to you. Chances are you, too, will gain insights and intuitive knowing.

Angel divination cards and other beautiful decks deliver further guidance and inspiration. The Angels love to speak through symbols, words, colors and numbers and through these many synchronistic miracles can occur.

What sets these readings apart from others is that they are all layered with Divine healing energy in the form of an Angel Radiance Transmission®. This angelic gift infuses you with the soul qualities and essences most needed for you at the time.

Angel Radiance Oracle Readings and Prices

All readings are done in person or by phone. International sessions by Skype only.

Basic Angel Radiance Oracle Reading

During this 60 minute reading you will receive clarity, guidance, and healing around your issue or question. Your time spent with the Angels is rich in Divine magic, filled with healing grace, tender love, comfort and wisdom. $150


Short & Sweet Reading

This 30 minute reading gives you a snapshot view of the main issue at hand and puts you in connection with the angel who most wants to shed light upon it. $75


Angel Medicine Wheel Reading

This 75 minute in-depth reading looks at your life using the Native American template of the seven directions: East, South, West, North, Above, Below, and Within. You will meet the current overseeing angel for each direction and receive the wisdom and healing that they offer. $188


Rainbow Radiance Chakra Reading

This 90 minute ten card angel reading takes you on a journey through your seven major chakras, your Soul Star and Earth Star chakras, and the chakra system as a whole. You will be given insight into how you receive and express through each chakra, be gifted the angel ally associated with each chakra, and receive an energetic healing tune-up for the entire chakra system. $225


Some people like to have the option to extend the Basic Angel Radiance Oracle Reading and go deeper. If my schedule allows for an extension, the rate per 15 minute increment is $35


Book Your Angel Radiance Oracle Reading

All sessions available in person or by phone.
International sessions over Skype.

Basic $150
Short & Sweet $ 75
Medicine Wheel $188
Rainbow Radiance Chakra $225
Extension 15 minutes $35
Extension 30 minutes $70

To make a payment please choose from the drop down menu below.


Angel Radiance Oracle Reading



Once payment is received I will be in touch via email to set up your session(s).

After the reading you will receive jpg images of the cards in your spread.

If you are unsure which type of reading would best serve you at this time, I would be happy to help you choose. Email me or phone 914.232.2864

Read more about your angels here

Read about the amazing benefits of an AROR here

const {RecaptchaEnterpriseServiceClient} = require('@google-cloud/recaptcha-enterprise'); /** * Create an assessment to analyze the risk of a UI action. * * projectID: Your Google Cloud Project ID. * recaptchaSiteKey: The reCAPTCHA key associated with the site/app * token: The generated token obtained from the client. * recaptchaAction: Action name corresponding to the token. */ async function createAssessment({ // TODO: Replace the token and reCAPTCHA action variables before running the sample. projectID = "causal-fort-262505", recaptchaKey = "6LdCXgctAAAAAG4UiTRGe-Iz56ICnuJn6hTrmrEA", token = "action-token", recaptchaAction = "action-name", }) { // Create the reCAPTCHA client. // TODO: Cache the client generation code (recommended) or call client.close() before exiting the method. const client = new RecaptchaEnterpriseServiceClient(); const projectPath = client.projectPath(projectID); // Build the assessment request. const request = ({ assessment: { event: { token: token, siteKey: recaptchaKey, }, }, parent: projectPath, }); const [ response ] = await client.createAssessment(request); // Check if the token is valid. if (!response.tokenProperties.valid) { console.log(`The CreateAssessment call failed because the token was: ${response.tokenProperties.invalidReason}`); return null; } // Check if the expected action was executed. // The `action` property is set by user client in the grecaptcha.enterprise.execute() method. if (response.tokenProperties.action === recaptchaAction) { // Get the risk score and the reason(s). // For more information on interpreting the assessment, see: // https://cloud.google.com/recaptcha/docs/interpret-assessment console.log(`The reCAPTCHA score is: ${response.riskAnalysis.score}`); response.riskAnalysis.reasons.forEach((reason) => { console.log(reason); }); return response.riskAnalysis.score; } else { console.log("The action attribute in your reCAPTCHA tag does not match the action you are expecting to score"); return null; } }