OpportunitiesIdRefresh

Read an opportunity's verification verdict

The stored verdict. Poll this after a POST returns 202. TWO independent verdicts, and acting on one alone will burn your reps: `verification_status` — does the CLAIM still hold? `window_status` — is there still a chance to ACT? They fail independently. A procurement page describes its bid accurately for months after the deadline passes, so a row can be `confirmed` and `closed` at the same time — the claim is true and the opportunity is dead. Treat `confirmed` + (`open` | `closing` | `durable`) as live, and nothing else. `durable` means there is nothing to expire (a standing staffing gap, an adopted law). `unreachable` means we could not settle it — unconfirmed, never confirmed. `verifying` means a run is still going.

GET
/opportunities/{id}/refresh

The stored verdict. Poll this after a POST returns 202.

TWO independent verdicts, and acting on one alone will burn your reps:

verification_status — does the CLAIM still hold? window_status — is there still a chance to ACT?

They fail independently. A procurement page describes its bid accurately for months after the deadline passes, so a row can be confirmed and closed at the same time — the claim is true and the opportunity is dead. Treat confirmed + (open | closing | durable) as live, and nothing else.

durable means there is nothing to expire (a standing staffing gap, an adopted law). unreachable means we could not settle it — unconfirmed, never confirmed. verifying means a run is still going.

AuthorizationBearer <token>

API key (sk_live_... prefix). Generate keys in the UI under Settings > API Keys, then send it as Authorization: Bearer sk_live_...

In: header

Path Parameters

id*string

Opportunity id

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://loading/api/v1/opportunities/497f6eca-6276-4993-bfeb-53cbbbba6f08/refresh"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "verification_status": "unverified",
  "verification_note": "string",
  "last_verified_at": "string",
  "window_status": "unknown",
  "window_ends_on": "string",
  "source_checks": [
    {
      "url": "string",
      "checked_at": "string",
      "status": "ok",
      "note": "string"
    }
  ]
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}
Empty
Empty
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}