curl --request GET \
--url https://prod-api.civicmarketplace.com/v1/solicitations \
--header 'Authorization: Bearer <token>'import requests
url = "https://prod-api.civicmarketplace.com/v1/solicitations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://prod-api.civicmarketplace.com/v1/solicitations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://prod-api.civicmarketplace.com/v1/solicitations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://prod-api.civicmarketplace.com/v1/solicitations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://prod-api.civicmarketplace.com/v1/solicitations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://prod-api.civicmarketplace.com/v1/solicitations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "sol_16",
"ref": 123,
"reference_number": "RFP-2026-014",
"title": "<string>",
"status": "open",
"issuing_organization": "<string>",
"lead_entity": {
"id": "<string>",
"name": "<string>"
},
"is_open": true,
"open_at": "2023-11-07T05:31:56Z",
"close_at": "2023-11-07T05:31:56Z",
"questions_due_at": "2023-11-07T05:31:56Z",
"intent_to_bid_due_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"next_cursor": "<string>",
"limit": 123
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"request_id": "<string>"
}
}List Solicitations
Open and historic solicitations (RFPs) issued by the lead entities in this partner’s scope. Drafts are never returned. Results are ordered by id for stable cursor pagination — use closing_before / closing_after to narrow to a deadline window rather than relying on order.
updated_at tracks the solicitation record only. Adding a public notice or a document does not touch it, so updated_since will not surface an addendum on a solicitation you have already synced. Re-read the detail endpoint for those.
curl --request GET \
--url https://prod-api.civicmarketplace.com/v1/solicitations \
--header 'Authorization: Bearer <token>'import requests
url = "https://prod-api.civicmarketplace.com/v1/solicitations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://prod-api.civicmarketplace.com/v1/solicitations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://prod-api.civicmarketplace.com/v1/solicitations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://prod-api.civicmarketplace.com/v1/solicitations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://prod-api.civicmarketplace.com/v1/solicitations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://prod-api.civicmarketplace.com/v1/solicitations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "sol_16",
"ref": 123,
"reference_number": "RFP-2026-014",
"title": "<string>",
"status": "open",
"issuing_organization": "<string>",
"lead_entity": {
"id": "<string>",
"name": "<string>"
},
"is_open": true,
"open_at": "2023-11-07T05:31:56Z",
"close_at": "2023-11-07T05:31:56Z",
"questions_due_at": "2023-11-07T05:31:56Z",
"intent_to_bid_due_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"next_cursor": "<string>",
"limit": 123
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>",
"request_id": "<string>"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Lead-entity id from /v1/lead-entities; limits results to that issuer.
Filters on the stored lifecycle status, which nothing closes on a schedule — an expired RFP is still stored as open. Use the is_open field, or closing_before / closing_after, to tell whether bidding is live. draft is not accepted: unpublished solicitations are never served.
open, closed, awarded, cancelled Free-text search across title, reference number, and description.
200Only solicitations with a close date at or after this instant. Solicitations with no close date are excluded.
Only solicitations with a close date at or before this instant. Solicitations with no close date are excluded.
1 <= x <= 100
