Retrieve Quotes: This endpoint allows you to retrieve a list of quotes from the resource database. You can specify the order, pagination, and the fields you want to include in the response.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Request Parameters
-
order_by (string): Specifies the order in which the results should be returned.
Example:creation desc: results will be ordered by the creation date in descending order. -
limit_page_length (integer): Defines the maximum number of records to return in the response.
Example:20: up to 20 quotes will be returned. -
limit_start (integer): Indicates the starting point for the records to be returned.
Example:20: results will start from the 21st record. -
fields (array of strings): Specifies the fields to be included in the response.
Example:["name", "status", "buyer_name"]: only these fields will be included for each quote.
Expected Response
The response will contain a JSON object with a data key, which is an array of quote objects. Each object will include the requested fields:
{
"data": [
{
"name": "",
"status": "",
"buyer_name": ""
}
]
}