action gsa_list_vendors_get { label: "This endpoint returns a list of vendors filtered by a NAICS code" description: "

This endpoint returns a list of vendors filtered by a NAICS code. The NAICS code maps to an OASIS pool and is used to retrieve vendors in that pool only.

\n

OASIS pools are groupings of NAICS codes that have the same small business size standard. Because contracts solicited to OASIS vendors can only be issued to one pool, much of the data is presented as part of a pool grouping. Using the NAICS code is a shortcut, so that you don't have to explicitly map the NAICS code to a pool in OASIS yourself.

\n

Vendors can also be filtered by a particular setaside. Valid values for the setasides are two-character codes which include:

\n" provider: gsa method: GET path: "/api/vendors/" encoding: json input: { type: "object" properties: { naics: { type: "string" } setasides: { type: "string" } vehicle: { type: "string" } } required: ["naics"] additionalProperties: false } output: { type: "object" additionalProperties: true } }