Skip to content
SIBISIBI Developers
Esc
navigateopen⌘Jpreview

Get offers

Search and list offers with optional filtering by status, search term, and pagination.

GET/
Query parameters
statusstring
Allowed:pendingawaiting_customercanceledbuyout_acceptedorder_placedexpired
searchTermstring
pageinteger
min 1 · default: 1
pageSizeinteger
min 1 · max 100 · default: 25
Responses
200Offers retrieved successfully
offersobject[]required
Show properties
Array of object
idstringrequired
statusstringrequired
Current offer status
thirdPartyIdstring | nullrequired
totalCountnumberrequired
statusesobject[]required
Show properties
Array of object
statusstringrequired
Offer status
countnumberrequired
pageInfoobjectrequired
Show properties
hasNextPagebooleanrequired
hasPreviousPagebooleanrequired
401Unauthorized - Missing or invalid authentication
codestringrequired
Error code indicating the type of error
messagestringrequired
Human-readable error message explaining what went wrong
detailsobject[]
Detailed validation errors when applicable
Show properties
Array of object
fieldstringrequired
errorstringrequired
500Internal server error
codestringrequired
Error code indicating the type of error
messagestringrequired
Human-readable error message explaining what went wrong
detailsobject[]
Detailed validation errors when applicable
Show properties
Array of object
fieldstringrequired
errorstringrequired
Request
curl -X GET "https://api.sibipro.com/prod/offers/"
Response
{
  "offers": [
    {
      "id": "string",
      "status": "pending",
      "thirdPartyId": "string"
    }
  ],
  "totalCount": 0,
  "statuses": [
    {
      "status": "pending",
      "count": 0
    }
  ],
  "pageInfo": {
    "hasNextPage": true,
    "hasPreviousPage": true
  }
}