Business proposal or bid document submitted to potential clients. Contains proposal details, pricing, client information, submission dates, validity period, and current status.
https://api.mockly.codes/proposals?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/proposalsGet a collection of proposals
/business/proposals/proposals/:idGet a single proposal by ID
/business/proposals/:id/proposals/metaGet resource metadata and schema
/business/proposals/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/proposals?q=laptopGET https://api.mockly.codes/proposals?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 proposals
fetch('https://api.mockly.codes/proposals?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/proposals?count=10'
)
data = response.json()curl "https://api.mockly.codes/proposals?count=10"fetch('https://api.mockly.codes/proposals?nocache=true')idintegerUnique identifier for the proposal record
random_inttitlestringTitle or subject of the proposal
sentenceclient_idintegerForeign key reference to the client or prospect the proposal is submitted to
random_intdescriptionstringDetailed description of the proposed solution, services, or project scope
paragraphvaluenumberTotal proposed value or price for the services or project
pricecurrencystringISO currency code for the proposal value (e.g., USD, EUR, GBP)
currencystatusstringCurrent status of the proposal (e.g., draft, submitted, under-review, accepted, rejected, expired)
statussubmitted_datestringDate and time when the proposal was submitted to the client
past_datedate-timevalid_untilstringExpiration date after which the proposal terms are no longer valid
future_datedatecreated_bystringFull name of the person who created or authored the proposal
namecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request