Skip to main content
POST
/
api
/
samgov
/
entities
/samgov/entities
curl --request POST \
  --url https://api.anysite.io/api/samgov/entities \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "entity": "<string>",
  "timeout": 300
}
'
[
  {
    "uei_sam": "<string>",
    "@type": "@samgov_entity",
    "cage_code": "<string>",
    "dodaac": "<string>",
    "legal_business_name": "<string>",
    "dba_name": "<string>",
    "entity_url": "<string>",
    "sam_registered": true,
    "registration_status": "<string>",
    "uei_status": "<string>",
    "purpose_of_registration": "<string>",
    "is_excluded": true,
    "registered_at": "<string>",
    "registration_expires_at": "<string>",
    "activated_at": "<string>",
    "updated_at": "<string>",
    "entity_start_date": "<string>",
    "fiscal_year_end": "<string>",
    "congressional_district": "<string>",
    "entity_structure": "<string>",
    "organization_structure": "<string>",
    "business_entity_type": "<string>",
    "profit_structure": "<string>",
    "state_of_incorporation": "<string>",
    "country_of_incorporation": "<string>",
    "business_types": [],
    "primary_naics": "<string>",
    "naics": [],
    "psc": [],
    "physical_address": {
      "@type": "@samgov_entity_address",
      "street_address": "<string>",
      "street_address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "zip4": "<string>",
      "country": "<string>"
    },
    "mailing_address": {
      "@type": "@samgov_entity_address",
      "street_address": "<string>",
      "street_address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "zip4": "<string>",
      "country": "<string>"
    },
    "points_of_contact": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
entity
string
required

Entity Unique Entity ID (12-character UEI/ueiSAM)

Minimum string length: 1
Example:

"KM99JJBNQ9M5"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

uei_sam
string
required
@type
string
default:@samgov_entity
cage_code
string | null
dodaac
string | null
dba_name
string | null
entity_url
string | null
sam_registered
boolean | null
registration_status
string | null
uei_status
string | null
purpose_of_registration
string | null
is_excluded
boolean | null
registered_at
string | null
registration_expires_at
string | null
activated_at
string | null
updated_at
string | null
entity_start_date
string | null
fiscal_year_end
string | null
congressional_district
string | null
entity_structure
string | null
organization_structure
string | null
business_entity_type
string | null
profit_structure
string | null
state_of_incorporation
string | null
country_of_incorporation
string | null
business_types
string[]
primary_naics
string | null
naics
SamgovEntityNaics · object[]
psc
SamgovEntityPsc · object[]
physical_address
SamgovEntityAddress · object
mailing_address
SamgovEntityAddress · object
points_of_contact
SamgovEntityPointOfContact · object[]