# SERI R2 Certified Facilities Directory Actor (`tehsnarf/seri-r2-certified-facilities-directory`) Actor

Scrapes SERI's public R2-certified electronics recycling/ITAD facility directory into structured facility records.

- **URL**: https://apify.com/tehsnarf/seri-r2-certified-facilities-directory.md
- **Developed by:** [Chris Hoover](https://apify.com/tehsnarf) (community)
- **Categories:** Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## SERI R2 Certified Facilities Directory Actor

Scrapes SERI's (Sustainable Electronics Recycling International) public directory of R2-certified
electronics recycling and ITAD (IT Asset Disposition) facilities into structured, filterable data.
The directory covers R2-certified facilities worldwide, drawn from SERI's official certification
records at [sustainableelectronics.org](https://sustainableelectronics.org/find-an-r2-certified-facility/).

### Use cases

- **ITAD vendor discovery** — find certified electronics recyclers/asset disposition vendors in a
  specific country, region, or with a specific R2v3 business workflow (e.g. Data Destruction,
  Escrap/Recycling).
- **E-waste compliance and procurement research** — build a normalized list of R2-certified
  facilities for vendor vetting, RFP sourcing, or sustainability audits.
- **Certification monitoring** — track certificate status (Active/Suspended/Expired/Voluntarily
  Withdrawn) for a known set of facilities or an entire country/region over time.

### Input configuration

| Field | Type | Description |
|---|---|---|
| `certificateStatuses` | array of strings | Certificate statuses to include. Default `["Active"]`. Also valid: `Suspended`, `Expired`, `Voluntarily Withdrawn`. |
| `countries` | array of strings | Country names to filter by. Empty = worldwide. |
| `regions` | array of strings | SERI region groupings: `Africa`, `Asia`, `Australia-Pacific`, `Central America`, `Europe`, `North America`, `South America`. |
| `businessWorkflows` | array of strings | R2v3 business workflow filters, e.g. `ITAD/Remarketing`, `Escrap/Recycling`, `Data Destruction Physical`. |
| `versions` | array of strings | R2 standard versions: `R2:2013`, `R2v3`, `All`. |
| `maxItems` | integer | Maximum facility records to emit. Default 1000. |
| `delaySeconds` | number | Polite pause between internal filter requests. Default 1.0. |

The directory's filter endpoint returns every matching facility in a single response (no
pagination) — for example, "Active" certificate status alone returns 1,230+ facilities worldwide in
one request. This actor issues one request per run and truncates client-side to `maxItems`.

### Output fields

| Field | Type | Description |
|---|---|---|
| `company_name` | string | Public facility/company name |
| `address_full` | string | Full public address string as exposed on the directory |
| `city` | string | Best-effort parsed city (null when the address format is ambiguous) |
| `state_province` | string | Best-effort parsed state/province (null when ambiguous or not applicable) |
| `country` | string | Public country (reliably parsed) |
| `region` | string | Public SERI region grouping (reliably parsed) |
| `certification_status` | string | Certificate status, e.g. `Active` |
| `r2_standard_version` | string | R2 standard/version, e.g. `R2v3` |
| `facility_detail_id` | string | SERI's internal facility application ID |
| `facility_detail_url` | string | Public facility detail page URL |
| `filters_applied` | object | The exact filter set used to produce this run, echoed on every record |
| `scraped_at` | date | ISO timestamp when the record was scraped |

### Example output

```json
{
  "company_name": "1PC, LLC",
  "address_full": "3550 Meridian St Ste 2, Bellingham, WA, United States, North America",
  "city": "Bellingham",
  "state_province": "WA",
  "country": "United States",
  "region": "North America",
  "certification_status": "Active",
  "r2_standard_version": "R2v3",
  "facility_detail_id": "0017V0000268ZN4QAM",
  "facility_detail_url": "https://sustainableelectronics.org/find-an-r2-certified-facility/?appids=0017V0000268ZN4QAM&tab=2",
  "filters_applied": {
    "certificate": "Active",
    "country_features": "United States",
    "regions": "",
    "workflow": "",
    "versions": ""
  },
  "scraped_at": "2026-07-12T08:12:05.688117+00:00"
}
````

### Pricing

$6.00 per 1,000 results.

| Results | Cost |
|---|---|
| 100 | $0.60 |
| 500 | $3.00 |
| 1,000 | $6.00 |
| 5,000 | $30.00 |

# Actor input Schema

## `certificateStatuses` (type: `array`):

Certificate statuses to include.

## `countries` (type: `array`):

Country names to filter by (empty = worldwide).

## `regions` (type: `array`):

SERI region groupings to filter by (e.g. North America, Asia, Europe).

## `businessWorkflows` (type: `array`):

R2v3 business workflow filters (e.g. ITAD/Remarketing, Escrap/Recycling).

## `versions` (type: `array`):

R2 standard versions to filter by (R2:2013, R2v3, All).

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

Maximum number of facility records to emit.

## `delaySeconds` (type: `number`):

Polite pause used between internal filter requests.

## Actor input object example

```json
{
  "certificateStatuses": [
    "Active"
  ],
  "countries": [],
  "regions": [],
  "businessWorkflows": [],
  "versions": [],
  "maxItems": 1000,
  "delaySeconds": 1
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("tehsnarf/seri-r2-certified-facilities-directory").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("tehsnarf/seri-r2-certified-facilities-directory").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 '{}' |
apify call tehsnarf/seri-r2-certified-facilities-directory --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=tehsnarf/seri-r2-certified-facilities-directory",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SERI R2 Certified Facilities Directory Actor",
        "description": "Scrapes SERI's public R2-certified electronics recycling/ITAD facility directory into structured facility records.",
        "version": "0.0",
        "x-build-id": "T1kEwPRCOBsCUs8bv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/tehsnarf~seri-r2-certified-facilities-directory/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-tehsnarf-seri-r2-certified-facilities-directory",
                "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/tehsnarf~seri-r2-certified-facilities-directory/runs": {
            "post": {
                "operationId": "runs-sync-tehsnarf-seri-r2-certified-facilities-directory",
                "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/tehsnarf~seri-r2-certified-facilities-directory/run-sync": {
            "post": {
                "operationId": "run-sync-tehsnarf-seri-r2-certified-facilities-directory",
                "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",
                "properties": {
                    "certificateStatuses": {
                        "title": "Certificate statuses",
                        "type": "array",
                        "description": "Certificate statuses to include.",
                        "default": [
                            "Active"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "countries": {
                        "title": "Countries",
                        "type": "array",
                        "description": "Country names to filter by (empty = worldwide).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "regions": {
                        "title": "Regions",
                        "type": "array",
                        "description": "SERI region groupings to filter by (e.g. North America, Asia, Europe).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "businessWorkflows": {
                        "title": "R2v3 business workflows",
                        "type": "array",
                        "description": "R2v3 business workflow filters (e.g. ITAD/Remarketing, Escrap/Recycling).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "versions": {
                        "title": "R2 standard versions",
                        "type": "array",
                        "description": "R2 standard versions to filter by (R2:2013, R2v3, All).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of facility records to emit.",
                        "default": 1000
                    },
                    "delaySeconds": {
                        "title": "Delay between requests",
                        "minimum": 0.5,
                        "maximum": 2,
                        "type": "number",
                        "description": "Polite pause used between internal filter requests.",
                        "default": 1
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
