v1

latestOpenAPI 3.0.32026-07-264955102.7 KB
CRM

Search deals

Search and filter deals in your CRM.

post/v2/api/crm/deals/search

Request body

searchstring nullable

Free-text search across deal name and company

sort'DATE_DESC' | 'DATE_ASC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_DESC' | 'CREATED_ASC' nullable

Sort order (default: DATE_DESC)

pageinteger

Page number (1-indexed)

sizeinteger

Results per page

Response

Search results

Example response

{
  "data": [
    {
      "id": "dea-def456",
      "name": "Enterprise Plan",
      "status": "negotiation",
      "amount": 50000,
      "currency": "USD",
      "company": {
        "id": "com-xyz789",
        "name": "Acme Corp"
      },
      "created_at": "2026-04-15T14:00:00",
      "updated_at": "2026-04-28T10:30:00"
    }
  ]
}