Prosli AIProsli AI docs

Organizations

Organization endpoints expose the company account an API key belongs to, and the people in it.

Retrieve the current organization

curl https://api.prosliai.xyz/v1/organizations/current \
  -H "Authorization: Bearer $PROSLI_API_KEY"

Response

{
  "id": "org_123",
  "name": "Acme Inc.",
  "plan": "starter",
  "created": "2026-07-19T00:00:00Z"
}

Members

A members sub-resource will list the teammates in an organization and their roles, reflecting Prosli's role-based access control (owner, admin, member, and read-only).

curl https://api.prosliai.xyz/v1/organizations/current/members \
  -H "Authorization: Bearer $PROSLI_API_KEY"