StrideOps.aiStrideOps.ai Documentation
DocumentationAPI Reference
Proposals

GET List proposals

List proposals with status, contact, and date filters.

Endpoint

GET https://api.strideops.ai/v1/proposals

Returns a cursor-paginated list of envelopes ordered by createdAt desc.

Query parameters

ParamTypeNotes
limitint1-100, default 50.
cursorstringFrom the previous response's nextCursor.
statusenumFilter by envelope status.
contactIduuidFilter to envelopes for one contact.
createdAfteriso8601
createdBeforeiso8601
qstringFull-text match on title.

Response

{
  "data": [
    {
      "id": "env_…",
      "secondaryId": "P-1042",
      "title": "Acme Corp - Q2 Engagement",
      "status": "pending",
      "totalAmount": "5000.00",
      "currency": "USD",
      "createdAt": "2026-05-25T20:14:00Z"
    }
  ],
  "nextCursor": "eyJjcmVhdGVkQXQiOiIyMDI2LTA1LT…"
}

Example

curl 'https://api.strideops.ai/v1/proposals?status=pending&limit=20' \
  -H "Authorization: Bearer $STRIDE_API_KEY"

On this page