action gsa_get_vendor_get { label: "This endpoint returns a single vendor by their 9 digit DUNS number" description: "

This endpoint returns a single vendor by their 9 digit DUNS number. DUNS numbers can be looked up in the System for Award Management by vendor name.

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