action gsa_list_contracts_get { label: "This endpoint returns contract history from FPDS for a specific vendor" description: "

This endpoint returns contract history from FPDS for a specific vendor. The vendor's DUNS number is a required parameter. You can also filter contracts by their NAICS code to find contracts relevant to a particular category.

" provider: gsa method: GET path: "/api/contracts/" encoding: json input: { type: "object" properties: { direction: { type: "string" } duns: { type: "string" } naics: { type: "string" } page: { type: "string" } sort: { type: "string" } } required: ["duns"] additionalProperties: false } output: { type: "object" additionalProperties: true } }