Organisation
👥

Select an Organisation

Choose one of your organisations above to see its linked groups.

Your Personal API Key
Use this session token to authenticate REST API calls from your website or application. Keep it private — it has full access to your account.
Loading…

⚠️ Treat this like a password. If compromised, sign out and back in to rotate it.

Your User ID
Use your User ID when embedding the public prayer widget on your website.
Loading…
Embed Your Prayer Wall
Paste this snippet into any webpage to show your public prayers. Visitors can see your prayer requests without needing an account.

Script Tag

Works in any HTML page — Wordpress, Squarespace, custom sites.

iFrame

Use when you can't add custom scripts (some website builders).

Base URL
All API requests go to the Parse Server. Include your session token in every request.
# Base URL https://prayercircle.co.uk/parse # Required headers on every request X-Parse-Application-Id: 50150ad05aa431ddcf1d55db340faff2096e00e4 X-Parse-Session-Token: YOUR_API_KEY Content-Type: application/json
Endpoints
The most commonly used endpoints for Prayer Circle integrations.
POST
/classes/Prayer
Create a new prayer request. Requires authentication.
GET
/classes/Prayer?where={"user":{"__type":"Pointer","className":"_User","objectId":"USER_ID"}}
Fetch your public prayer requests.
GET
/classes/FeedPost?where={"organisation":{"__type":"Pointer","className":"FeedOrganization","objectId":"ORG_ID"}}
Fetch all posts for your organisation feed.
GET
/classes/Sermon?order=-createdAt&limit=10
Fetch recent sermons.
POST
/functions/updateUserDevice
Update your device information on your profile.
Example: Post a Prayer
// JavaScript (fetch) const response = await fetch('https://prayercircle.co.uk/parse/classes/Prayer', { method: 'POST', headers: { 'X-Parse-Application-Id': '50150ad05aa431ddcf1d55db340faff2096e00e4', 'X-Parse-Session-Token': 'YOUR_API_KEY', 'Content-Type': 'application/json', }, body: JSON.stringify({ title: 'Prayer for healing', prayerText: 'Lord, please bring healing and peace...', privacy: 'public', }), }); const data = await response.json(); console.log(data.objectId); // ID of new prayer
Example: Get Your Prayers
# cURL curl -X GET \ 'https://prayercircle.co.uk/parse/classes/Prayer?order=-createdAt&limit=10' \ -H 'X-Parse-Application-Id: 50150ad05aa431ddcf1d55db340faff2096e00e4' \ -H 'X-Parse-Session-Token: YOUR_API_KEY' # Response { "results": [ { "objectId": "abc123", "title": "Prayer for healing", "prayerText": "Lord, please...", "createdAt": "2026-06-17T10:30:00.000Z" } ] }
→ Full API documentation on Prayer API page
Copied!