List Clients
Retrieve all clients in your organization. Clients group sites by customer or brand.
clients.view
GET
/v1/clientsQuery Parameters
searchstringSearch by client name, contact name, or contact email
archivedstringShow archived clients: true or false (default: false)
pageintegerPage number (default: 1)
limitintegerResults per page, 1â100 (default: 25)
Example Request
curl
curl "https://proforms.io/api/v1/clients" \
-H "Authorization: Bearer pf_your_api_key"Response
200 OK
{
"success": true,
"data": {
"clients": [
{
"id": "c_abc123",
"name": "Acme Corp",
"slug": "acme-corp",
"logo": null,
"color": "#10B981",
"contactName": "Jane Smith",
"contactEmail": "jane@acme.com",
"contactPhone": "801-555-1234",
"notes": "Enterprise client â monthly retainer",
"isArchived": false,
"archivedAt": null,
"siteCount": 3,
"formCount": 12,
"submissionCount": 847,
"createdAt": "2026-01-10T10:00:00.000Z",
"updatedAt": "2026-02-15T14:00:00.000Z"
}
],
"total": 1,
"page": 1,
"limit": 25,
"totalPages": 1
}
}âšī¸
Clients require the Agency plan. API calls return
403 if your organization is on a lower tier.