Skip to main content
GET
/
api
/
applications
List applications by query filters
curl --request GET \
  --url https://your-instance.example.com/api/applications \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "_id": "64d2f9c5e8a1d4e001a0b1c2",
      "name": "Maple Court — Unit 412",
      "organizationId": "64a1b2c3d4e5f60012345678",
      "status": "in_progress",
      "pipelineStage": "Tour scheduled",
      "createdAt": "2026-04-12T14:22:10.000Z",
      "updatedAt": "2026-04-22T10:14:00.000Z"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

contactId
string
status
string
userId
string
pipelineStage
string
pipelineStageIds
string

Response

Applications returned

List response for GET /api/applications (query-string variant). Returns all matches, sorted by createdAt desc.

success
enum<boolean>
required
Available options:
true
data
object[]
required
total
integer

Number of applications returned (no pagination on this endpoint).