# SAM.gov Contract Opportunities Scraper (`crawlerbros/sam-gov-scraper`) Actor

Scrape US federal contract opportunities from SAM.gov - search by keyword, NAICS code, set-aside type, and date range. Returns solicitations, pre-solicitations, sources sought, awards, and more.

- **URL**: https://apify.com/crawlerbros/sam-gov-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Lead generation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 4 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## SAM.gov Contract Opportunities Scraper

Scrape US federal government contract opportunities from [SAM.gov](https://sam.gov) — the official System for Award Management. Find solicitations, pre-solicitations, sources sought, awards, and more using keyword search, NAICS codes, set-aside types, and date filters.

### What data does this actor extract?

Each record contains:

| Field | Description |
|-------|-------------|
| `noticeId` | Unique SAM.gov opportunity ID |
| `title` | Opportunity title |
| `solicitationNumber` | Solicitation/RFP number |
| `department` | Federal department (e.g. Department of Defense) |
| `agency` | Issuing agency |
| `office` | Contracting office |
| `postedDate` | Date the opportunity was posted |
| `type` | Notice type (Solicitation, Pre-Solicitation, etc.) |
| `baseType` | Base notice type code |
| `archiveDate` | Date the opportunity will be archived |
| `archiveType` | Archive type |
| `setAside` | Set-aside designation (e.g. Small Business) |
| `setAsideCode` | Set-aside code |
| `naicsCode` | NAICS industry code |
| `classificationCode` | Product/Service Code (PSC) |
| `active` | Whether the opportunity is active |
| `awardDate` | Award date (if awarded) |
| `awardAmount` | Award dollar amount |
| `awardeeName` | Name of awardee company |
| `pointOfContact` | List of contacts with name, email, and type |
| `officeAddress` | Contracting office address |
| `placeOfPerformance` | Location where work will be performed |
| `description` | Opportunity description or link |
| `sourceUrl` | Direct link to the opportunity on SAM.gov |
| `recordType` | Always "opportunity" |
| `scrapedAt` | ISO timestamp of when the record was scraped |

### Input

| Field | Type | Description |
|-------|------|-------------|
| `mode` | select | `searchOpportunities` (default) or `getOpportunityDetail` |
| `apiKey` | string | Free API key from [sam.gov/content/sam-api](https://sam.gov/content/sam-api) (optional but recommended) |
| `searchQuery` | string | Keywords to search (e.g. "software development", "construction") |
| `opportunityType` | select | Filter by notice type: Solicitation, Pre-Solicitation, Sources Sought, Special Notice, Sale of Surplus |
| `naicsCode` | string | NAICS code filter (e.g. "541511") |
| `setAside` | select | Small business set-aside type (HUBZone, SBA, 8(a), WOSB, etc.) |
| `postedFrom` | string | Start date filter YYYY-MM-DD |
| `postedTo` | string | End date filter YYYY-MM-DD |
| `noticeIds` | array | Notice IDs for `getOpportunityDetail` mode |
| `maxItems` | integer | Maximum records to return (1–500, default 25) |

### Getting a Free API Key

1. Register at [sam.gov/content/sam-api](https://sam.gov/content/sam-api)
2. Create a System Account or use a Personal API key
3. Pass the key as `apiKey` in the input

Without an API key, the actor will attempt requests but may receive a 403 Forbidden response from SAM.gov. When this happens, the actor emits a clear error record explaining how to get the free key.

### Example Input

```json
{
  "mode": "searchOpportunities",
  "searchQuery": "software development",
  "opportunityType": "k",
  "setAside": "SBA",
  "maxItems": 50
}
````

### Example Output

```json
{
  "noticeId": "abc123def456",
  "title": "Software Development Services",
  "solicitationNumber": "W91CRB-24-R-0001",
  "department": "Department of Defense",
  "agency": "Department of the Army",
  "office": "ACC-APG",
  "postedDate": "2024-01-15",
  "type": "k",
  "setAside": "Small Business",
  "setAsideCode": "SBA",
  "naicsCode": "541511",
  "active": true,
  "pointOfContact": [
    {"type": "primary", "name": "Jane Doe", "email": "jane.doe@army.mil"}
  ],
  "sourceUrl": "https://sam.gov/opp/abc123def456/view",
  "recordType": "opportunity",
  "scrapedAt": "2024-01-20T10:30:00+00:00"
}
```

### Frequently Asked Questions

**Q: Do I need an API key?**
A: An API key is strongly recommended. Without one, SAM.gov may return 403 errors. Get a free key at [sam.gov/content/sam-api](https://sam.gov/content/sam-api).

**Q: What is the rate limit?**
A: SAM.gov public API has rate limits that vary by key tier. The actor handles rate limit responses with automatic retries.

**Q: How do I find opportunities for my industry?**
A: Use the `naicsCode` filter. Find your NAICS code at [naics.com](https://www.naics.com/).

**Q: What does "Sources Sought" mean?**
A: A market research notice used by agencies to identify capable vendors before issuing a formal solicitation.

**Q: Can I track new opportunities automatically?**
A: Yes — schedule this actor to run daily and filter by `postedFrom` to get only new postings.

**Q: What set-aside types are available?**
A: HUBZone, Small Business, 8(a), HBCUs/MIs, Emerging Small Business, Indian Small Business, Veteran-Owned, and Woman-Owned Small Business.

# Actor input Schema

## `mode` (type: `string`):

Operation mode: search for opportunities or fetch detail for specific notice IDs.

## `apiKey` (type: `string`):

Free API key from https://sam.gov/content/sam-api. Required — the SAM.gov v2 API rejects all requests without a key. Registration is free.

## `searchQuery` (type: `string`):

Keywords to search in opportunity titles and descriptions (e.g. 'software development', 'construction', 'IT services').

## `opportunityType` (type: `string`):

Filter by notice type. Leave blank for all types.

## `naicsCode` (type: `string`):

Filter by NAICS code (e.g. '541511' for custom computer programming). See https://www.naics.com/.

## `setAside` (type: `string`):

Filter by small business set-aside designation.

## `postedFrom` (type: `string`):

Only return opportunities posted on or after this date.

## `postedTo` (type: `string`):

Only return opportunities posted on or before this date.

## `noticeIds` (type: `array`):

List of SAM.gov opportunity/notice IDs to fetch in detail mode.

## `maxItems` (type: `integer`):

Maximum number of opportunity records to return.

## Actor input object example

```json
{
  "mode": "searchOpportunities",
  "searchQuery": "software development",
  "opportunityType": "",
  "setAside": "",
  "maxItems": 10
}
```

# Actor output Schema

## `opportunities` (type: `string`):

Dataset containing all scraped SAM.gov contract opportunity records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "searchOpportunities",
    "searchQuery": "software development",
    "opportunityType": "",
    "setAside": "",
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/sam-gov-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "searchOpportunities",
    "searchQuery": "software development",
    "opportunityType": "",
    "setAside": "",
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/sam-gov-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "searchOpportunities",
  "searchQuery": "software development",
  "opportunityType": "",
  "setAside": "",
  "maxItems": 10
}' |
apify call crawlerbros/sam-gov-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/sam-gov-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SAM.gov Contract Opportunities Scraper",
        "description": "Scrape US federal contract opportunities from SAM.gov - search by keyword, NAICS code, set-aside type, and date range. Returns solicitations, pre-solicitations, sources sought, awards, and more.",
        "version": "1.0",
        "x-build-id": "6ciJ1O8c406BRjg3H"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~sam-gov-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-sam-gov-scraper",
                "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/crawlerbros~sam-gov-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-sam-gov-scraper",
                "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/crawlerbros~sam-gov-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-sam-gov-scraper",
                "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": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "searchOpportunities",
                            "getOpportunityDetail"
                        ],
                        "type": "string",
                        "description": "Operation mode: search for opportunities or fetch detail for specific notice IDs.",
                        "default": "searchOpportunities"
                    },
                    "apiKey": {
                        "title": "SAM.gov API Key",
                        "type": "string",
                        "description": "Free API key from https://sam.gov/content/sam-api. Required — the SAM.gov v2 API rejects all requests without a key. Registration is free."
                    },
                    "searchQuery": {
                        "title": "Search Query",
                        "type": "string",
                        "description": "Keywords to search in opportunity titles and descriptions (e.g. 'software development', 'construction', 'IT services')."
                    },
                    "opportunityType": {
                        "title": "Opportunity Type",
                        "enum": [
                            "",
                            "k",
                            "p",
                            "r",
                            "s",
                            "g"
                        ],
                        "type": "string",
                        "description": "Filter by notice type. Leave blank for all types.",
                        "default": ""
                    },
                    "naicsCode": {
                        "title": "NAICS Code",
                        "type": "string",
                        "description": "Filter by NAICS code (e.g. '541511' for custom computer programming). See https://www.naics.com/."
                    },
                    "setAside": {
                        "title": "Set-Aside Type",
                        "enum": [
                            "",
                            "HZC",
                            "SBA",
                            "8A",
                            "HBCUs",
                            "IEE",
                            "ISBEE",
                            "SBP",
                            "VSB",
                            "WOSB"
                        ],
                        "type": "string",
                        "description": "Filter by small business set-aside designation.",
                        "default": ""
                    },
                    "postedFrom": {
                        "title": "Posted From (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only return opportunities posted on or after this date."
                    },
                    "postedTo": {
                        "title": "Posted To (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only return opportunities posted on or before this date."
                    },
                    "noticeIds": {
                        "title": "Notice IDs (getOpportunityDetail mode)",
                        "type": "array",
                        "description": "List of SAM.gov opportunity/notice IDs to fetch in detail mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of opportunity records to return.",
                        "default": 25
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
