/api/v1/organisationGet the organisation
Returns the organisation the key belongs to.
This endpoint takes no parameters beyond the URL itself.
Example response
{
"organisation": {
"id": "5f1c0f7e-6f1a-4a5e-9d2b-2a1c3d4e5f60",
"name": "Acme Ltd",
"slug": "acme-ltd-4b2f1c",
"domain": "acme.com",
"logo_url": "https://signed.ci/uploads/2f8b1c9e.png",
"created_at": "2026-03-04T09:12:00.000Z"
},
"plan": {
"status": "active",
"plan_id": "standard",
"plan_name": "Standard"
},
"usage": {
"users": 68,
"templates": 6,
"members": 3,
"pending_invitations": 1
}
}Copy and paste
curl -X GET "https://api.usesigned.co.uk/api/v1/organisation" \
-H "X-API-Key: $SIGNED_API_KEY"