{
  "openapi": "3.0.1",
  "info": {
    "title": "SAM.gov Federal Contract & GovCon Opportunity Monitor",
    "description": "Monitor SAM.gov federal contract opportunities, solicitations, sources sought, and awards. Search by NAICS code, set-aside type (8a, WOSB, SDVOSB, HUBZone), agency, and state. Built on the official api.sam.gov endpoint for government contractors, GovCon BD teams, and capture managers.",
    "version": "0.1",
    "x-build-id": "3g83OVkF0bslIAnGV"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/mellowed_headpiece~sam-gov-opportunities-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-mellowed_headpiece-sam-gov-opportunities-monitor",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/mellowed_headpiece~sam-gov-opportunities-monitor/runs": {
      "post": {
        "operationId": "runs-sync-mellowed_headpiece-sam-gov-opportunities-monitor",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/mellowed_headpiece~sam-gov-opportunities-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-mellowed_headpiece-sam-gov-opportunities-monitor",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "apiKey"
        ],
        "properties": {
          "apiKey": {
            "title": "SAM.gov API key",
            "type": "string",
            "description": "Free personal API key from sam.gov (Workspace > Profile > Account Details > Public API Key). Required — this Actor only uses the official documented api.sam.gov endpoint, never SAM.gov's internal frontend API, so it does not break when the website changes."
          },
          "title": {
            "title": "Title keyword",
            "type": "string",
            "description": "Searches ONLY the opportunity title field. SAM.gov's official API has no full-text/description search — this is an intentional platform limitation, not a bug in this Actor. Leave blank to pull all opportunities matching your other filters.",
            "default": ""
          },
          "naicsCode": {
            "title": "NAICS code(s)",
            "type": "array",
            "description": "One or more NAICS codes, e.g. 541512 (Computer Systems Design). Leave empty for all industries.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "procurementTypes": {
            "title": "Procurement / notice types",
            "type": "array",
            "description": "Filter to specific notice types. Leave empty for all types.",
            "items": {
              "type": "string",
              "enum": [
                "p",
                "o",
                "k",
                "r",
                "g",
                "s",
                "a"
              ],
              "enumTitles": [
                "Presolicitation",
                "Solicitation",
                "Combined Synopsis/Solicitation",
                "Sources Sought",
                "Sale of Surplus Property",
                "Special Notice",
                "Award Notice"
              ]
            },
            "default": []
          },
          "setAsideTypes": {
            "title": "Set-aside type(s)",
            "type": "array",
            "description": "Filter to specific small-business set-aside categories. Leave empty for all (including full-and-open).",
            "items": {
              "type": "string",
              "enum": [
                "SBA",
                "8A",
                "SDVOSBC",
                "WOSB",
                "EDWOSB",
                "HZC",
                "VSA",
                "SBP"
              ],
              "enumTitles": [
                "Total Small Business",
                "8(a)",
                "Service-Disabled Veteran-Owned Small Business",
                "Women-Owned Small Business",
                "Economically Disadvantaged WOSB",
                "HUBZone",
                "Very Small Business",
                "Small Business Partnership"
              ]
            },
            "default": []
          },
          "state": {
            "title": "Place-of-performance state",
            "type": "string",
            "description": "Two-letter US state code, e.g. VA. Leave blank for all states.",
            "default": ""
          },
          "postedFromDaysAgo": {
            "title": "Posted from (days ago)",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Pull opportunities posted from this many days ago through today. SAM.gov's API requires a bounded date range, so this Actor computes it for you. Keep this small (7 for daily monitoring) — the API has a low daily request cap, so wide date ranges waste quota fast.",
            "default": 7
          },
          "activeOnly": {
            "title": "Active opportunities only",
            "type": "boolean",
            "description": "If true, excludes opportunities whose response deadline has already passed.",
            "default": true
          },
          "maxItems": {
            "title": "Max results",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Stops the run after this many opportunities. Each page pulls up to 100 records per request, so keep this reasonable relative to your daily API quota.",
            "default": 200
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}