Skip to main content
POST
/
api
/
samgov
/
exclusions
/
search
/samgov/exclusions/search
curl --request POST \
  --url https://api.anysite.io/api/samgov/exclusions/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 5000,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@samgov_exclusion",
    "name": "<string>",
    "classification": "<string>",
    "exclusion_type": "<string>",
    "exclusion_program": "<string>",
    "excluding_agency": "<string>",
    "excluding_agency_code": "<string>",
    "ct_code": "<string>",
    "status": "<string>",
    "activated_at": "<string>",
    "terminated_at": "<string>",
    "uei_sam": "<string>",
    "cage_code": "<string>",
    "address": {
      "@type": "@samgov_exclusion_address",
      "street_address": "<string>",
      "street_address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>"
    },
    "is_active": true,
    "first_name": "<string>",
    "middle_name": "<string>",
    "last_name": "<string>",
    "suffix": "<string>",
    "npi": "<string>",
    "description": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "cross_references": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search keyword (name, UEI, or CAGE code)

Minimum string length: 1
count
integer
required

Max number of results

Required range: 1 <= x <= 10000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
classification
enum<string> | null

Filter by subject type

Available options:
Individual,
Firm,
Special Entity Designation,
Vessel

Response

Successful Response

id
string
required
@type
string
default:@samgov_exclusion
name
string | null
classification
string | null
exclusion_type
string | null
exclusion_program
string | null
excluding_agency
string | null
excluding_agency_code
string | null
ct_code
string | null
status
string | null
activated_at
string | null
terminated_at
string | null
uei_sam
string | null
cage_code
string | null
address
SamgovExclusionAddress · object
is_active
boolean | null
first_name
string | null
middle_name
string | null
last_name
string | null
suffix
string | null
npi
string | null
description
string | null
created_at
string | null
updated_at
string | null
cross_references
SamgovExclusionCrossReference · object[]