GovRAMP Program Participants Directory avatar

GovRAMP Program Participants Directory

Pricing

from $5.00 / 1,000 results

Go to Apify Store
GovRAMP Program Participants Directory

GovRAMP Program Participants Directory

Scrapes GovRAMP's public Authorized Product List, Progressing Product List, and Accredited 3PAO directory into normalized, change-trackable JSON rows for cloud security/compliance procurement research.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

Chris Hoover

Chris Hoover

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

15 days ago

Last modified

Share

Scrapes GovRAMP's Program Participants directory — the authoritative public list of cloud products/services authorized (or in-process) under the GovRAMP framework, plus the accredited Third-Party Assessment Organization (3PAO) directory — into clean, structured JSON. All three tables (Authorized Product List, Progressing Product List, 3PAO directory) are normalized into one dataset with stable row IDs for run-over-run change tracking.

Why use this Actor?

GovRAMP (formerly StateRAMP) governs cloud security authorization for state/local/tribal government buyers, mirroring FedRAMP at the SLED level. The public page is a filterable HTML table with no bulk export API — this Actor is useful for:

  • Cloud vendors and resellers checking their own or a competitor's authorization status, impact level, and assigned 3PAO.
  • SLED procurement teams and integrators cross-referencing GovRAMP-authorized products before a purchase decision.
  • Compliance/security researchers tracking status changes (e.g. Provisionally Authorized → Authorized) across scheduled runs using each row's stable row_id.
  • AI agents and research pipelines that need machine-readable public-sector cloud compliance data instead of manually filtering a web table.

How to use this Actor

  1. Click Try for free (or Run) on this Actor's page.
  2. Leave the default Start URL as the GovRAMP Program Participants page (the same content is also mirrored at stateramp.org/product-list/).
  3. Set Max items to the number of rows you want (default 400 — comfortably above the current combined total across all three tables).
  4. Click Start and download your results as JSON, CSV, or Excel from the Output tab.

Input

FieldTypeDescription
startUrlsarrayGovRAMP Program Participants page URL. Defaults to govramp.org/program-participants.
maxItemsintegerMaximum number of rows to return across all three tables combined (default 400).

Output

Each item represents one row from one of the three GovRAMP tables:

{
"organization_name": "Box, Inc.",
"service_offering": "Box Enterprise Cloud Content Collaboration Platform",
"service_model": "SaaS, Paas",
"impact_level": "High",
"status": "Authorized",
"assessor_3pao": "Schellman & Company",
"row_id": "216862731115",
"source_section": "APL",
"source_url": "https://govramp.org/program-participants"
}

3PAO-directory rows use the same shape, with organization_name and assessor_3pao both set to the assessment firm's name and the product-specific fields left blank:

{
"organization_name": "A-LIGN",
"service_offering": null,
"service_model": null,
"impact_level": null,
"status": null,
"assessor_3pao": "A-LIGN",
"row_id": "208248792243",
"source_section": "3PAO",
"source_url": "https://govramp.org/program-participants"
}

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel.

Data table

FieldDescription
organization_nameCompany/organization name
service_offeringProduct/service name (Authorized/Progressing Product List rows only)
service_modelSaaS / PaaS / IaaS, etc. (APL/PPL rows only)
impact_levelGovRAMP impact level, e.g. Low / Moderate / High (APL/PPL rows only)
statusAuthorization status, e.g. Authorized / Provisionally Authorized / Ready / Progressing (APL/PPL rows only)
assessor_3paoThird-Party Assessment Organization named for this product, where GovRAMP has published one; for 3PAO-directory rows this equals organization_name
row_idGovRAMP's own stable row identifier — use this to detect status changes across scheduled runs
source_sectionOne of APL (Authorized Product List), PPL (Progressing Product List), or 3PAO (assessor directory)
source_urlPage URL the row was scraped from

Pricing

This Actor is priced at $5 per 1,000 results. Example costs:

ResultsCost
100$0.50
500$2.50
1,000$5.00
5,000$25.00

Tips

  • The full page currently holds under 400 combined rows across all three tables (~153 APL + ~194 PPL + ~30 3PAO) — a single run with the default maxItems captures everything in one pass.
  • Schedule this Actor on a recurring basis and diff on row_id + status to catch authorization changes (e.g. Provisionally Authorized → Authorized) without re-reading the whole page by eye.

FAQ

Is this legal? Yes — this Actor only reads GovRAMP's public program-participants page. No login is required and the site's robots.txt does not restrict this page.

Does this include personal contact information? No. GovRAMP's per-row detail panel includes a point-of-contact name/email, but this Actor intentionally does not extract it — only organization- and product-level fields are collected.

Found an issue? Use the Issues tab on this Actor's Apify Store page to report it.