Get Community Coordination Profile
curl --request GET \
--url https://api.thefaithapp.com/v1/community/coordination-profile \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'GET',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/community/coordination-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/community/coordination-profile"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"status": "Success",
"data": {
"coordination": {
"available": true,
"pilot_keys": [
"skills_reciprocity",
"recurring_rides"
],
"profile": {
"id": 42,
"skills_offered": [
"carpentry"
],
"skills_needed": [
"meal preparation"
],
"skills_help_count": 2,
"last_skills_helped_at": "2026-08-24T09:30:00.000000Z",
"ride_role": "offer",
"ride_origin_zone": "North Parish",
"ride_destination_zone": "Main Campus",
"ride_days": [
"sunday"
],
"household_stage": "midlife",
"can_offer": [
"phone setup"
],
"would_value": [
"gardening advice"
],
"neighborhood_zone": "Maple Ward",
"active": true,
"updated_at": "2026-08-28T09:30:00.000000Z"
},
"active_connections": 1,
"guardrails": {
"human_review_required": true,
"precise_location_collected": false,
"numeric_risk_score_created": false,
"staff_contact_before_introduction": true
}
}
}
}Community Preferences & Research
Get Community Coordination Profile
Returns the authenticated member’s consent-scoped coordination profile, active newcomer connections, and the safety guardrails applied to staff-reviewed suggestions.
GET
/
v1
/
community
/
coordination-profile
Get Community Coordination Profile
curl --request GET \
--url https://api.thefaithapp.com/v1/community/coordination-profile \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'GET',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/community/coordination-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/community/coordination-profile"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"status": "Success",
"data": {
"coordination": {
"available": true,
"pilot_keys": [
"skills_reciprocity",
"recurring_rides"
],
"profile": {
"id": 42,
"skills_offered": [
"carpentry"
],
"skills_needed": [
"meal preparation"
],
"skills_help_count": 2,
"last_skills_helped_at": "2026-08-24T09:30:00.000000Z",
"ride_role": "offer",
"ride_origin_zone": "North Parish",
"ride_destination_zone": "Main Campus",
"ride_days": [
"sunday"
],
"household_stage": "midlife",
"can_offer": [
"phone setup"
],
"would_value": [
"gardening advice"
],
"neighborhood_zone": "Maple Ward",
"active": true,
"updated_at": "2026-08-28T09:30:00.000000Z"
},
"active_connections": 1,
"guardrails": {
"human_review_required": true,
"precise_location_collected": false,
"numeric_risk_score_created": false,
"staff_contact_before_introduction": true
}
}
}
}Authorizations
Public client key copied from Developer Access. The member bearer token authenticates the request.
Member access token returned by POST /v1/auth/token.
Was this page helpful?