DEVELOPER API
Build on Kinship
A RESTful API designed for developers who integrate with church management. API keys with granular scopes, webhook notifications for real-time sync, and an OpenAPI spec so you can generate clients in any language.
SEE IT IN ACTION
Clean, predictable responses
Every endpoint returns well-structured JSON with consistent error handling. Here is a real request to list your members.
Request
curl -X GET https://api.usekinship.com/v1/members \
-H "X-API-Key: sk_live_abc123..." \
-H "Content-Type: application/json"Response 200 OK
{
"data": [
{
"id": "mbr_7x9k2m4p",
"firstName": "Sarah",
"lastName": "Mitchell",
"email": "sarah@example.com",
"status": "active",
"joinedAt": "2025-03-15T00:00:00Z"
}
],
"pagination": {
"cursor": "eyJpZCI6MTB9",
"hasMore": true
}
}API RESOURCES
What you can build
Full CRUD access to the data that matters. Every resource follows the same conventions — learn one, know them all.
BUILT RIGHT
An API you can rely on
We built our API the way we would want to consume one. No surprises, no undocumented behavior.
QUICK START
Up and running in minutes
Your first request
curl https://api.usekinship.com/v1/members \
-H "X-API-Key: sk_live_YOUR_KEY_HERE"Ready to integrate?
Start free with up to 50 active members. No credit card. No sales call. No contract.