Skip to main content
POST
/
api
/
samgov
/
opportunities
/samgov/opportunities
curl --request POST \
  --url https://api.anysite.io/api/samgov/opportunities \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "opportunity": "<string>",
  "timeout": 300
}
'
import requests

url = "https://api.anysite.io/api/samgov/opportunities"

payload = {
"opportunity": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({opportunity: '<string>', timeout: 300})
};

fetch('https://api.anysite.io/api/samgov/opportunities', 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://api.anysite.io/api/samgov/opportunities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'opportunity' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.anysite.io/api/samgov/opportunities"

payload := strings.NewReader("{\n \"opportunity\": \"<string>\",\n \"timeout\": 300\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/samgov/opportunities")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"opportunity\": \"<string>\",\n \"timeout\": 300\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.anysite.io/api/samgov/opportunities")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"opportunity\": \"<string>\",\n \"timeout\": 300\n}"

response = http.request(request)
puts response.read_body
[
  {
    "notice_id": "<string>",
    "@type": "SamgovOpportunity",
    "type": {
      "@type": "SamgovOpportunityType",
      "code": "<string>",
      "value": "<string>"
    },
    "status_code": "<string>",
    "status_value": "<string>",
    "solicitation_number": "<string>",
    "classification_code": "<string>",
    "naics": [],
    "set_aside": "<string>",
    "organization_id": "<string>",
    "parent_notice_id": "<string>",
    "is_active": true,
    "is_canceled": true,
    "is_archived": true,
    "published_at": "<string>",
    "modified_at": "<string>",
    "created_at": "<string>",
    "response_at": "<string>",
    "archive_at": "<string>",
    "descriptions": [],
    "place_of_performance": {
      "@type": "SamgovLocation",
      "street_address": "<string>",
      "street_address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>"
    },
    "point_of_contact": [],
    "award": {
      "@type": "SamgovAward",
      "number": "<string>",
      "amount": "<string>",
      "date": "<string>",
      "delivery_order_number": "<string>",
      "line_item_number": "<string>",
      "awardee": {
        "@type": "SamgovAwardee",
        "name": "<string>",
        "uei_sam": "<string>",
        "cage_code": "<string>",
        "location": {
          "@type": "SamgovLocation",
          "street_address": "<string>",
          "street_address2": "<string>",
          "city": "<string>",
          "state": "<string>",
          "zip": "<string>",
          "country": "<string>"
        }
      }
    },
    "attachments": []
  }
]
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
opportunity
string
required
Minimum string length: 1
timeout
integer
default:300
Required range: 20 <= x <= 1500

Response

Successful Response

notice_id
string
required
@type
string
default:SamgovOpportunity
type
object | null
status_code
string | null
status_value
string | null
solicitation_number
string | null
classification_code
string | null
naics
string[]
set_aside
string | null
organization_id
string | null
parent_notice_id
string | null
is_active
boolean | null
is_canceled
boolean | null
is_archived
boolean | null
published_at
string | null
modified_at
string | null
created_at
string | null
response_at
string | null
archive_at
string | null
descriptions
string[]
place_of_performance
object | null
point_of_contact
object[]
award
object | null
attachments
object[]