JIG Member Directory Actor
Pricing
Pay per usage
JIG Member Directory Actor
Scrapes the public JIG (Joint Inspection Group) aviation-fuel standards body member directory into structured company lead data.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Chris Hoover
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Scrapes the public JIG (Joint Inspection Group) aviation-fuel standards body member directory into structured company records — company name, region, member-since date, website, and logo.
Use cases
- Aviation-fuel supplier lead generation — build a prospect list of JIG member companies (fuel suppliers, airport fuel operators, energy majors) for sales/BD outreach.
- Market mapping — analyze the geographic spread of JIG's ~194-member network by region.
- Competitive/compliance monitoring — track new members joining the JIG standards ecosystem
over time via
memberSinceand repeated scheduled runs.
Output fields
| Field | Type | Description |
|---|---|---|
| companyName | string | Member company name |
| region | string | Region/head office label (e.g. "Africa", "Europe") — blank for some members |
| memberSince | string | Member-since date as shown on site (e.g. "February 21, 2022") |
| websiteUrl | string | Member's website URL, if listed |
| logoUrl | string | Member's logo image URL |
| sourcePage | integer | Which directory page (1+) the row came from |
| scrapedAt | string | ISO 8601 scrape timestamp |
Example output
{"companyName": "11 PLC","region": "Africa","memberSince": "February 21, 2022","websiteUrl": "https://www.11plc.com","logoUrl": "https://kamino.fra1.cdn.digitaloceanspaces.com/jig/app/uploads/2024/05/11PLC-300x187.jpg","sourcePage": 1,"scrapedAt": "2026-08-03T00:14:59.299514+00:00"}
Input configuration
| Field | Default | Description |
|---|---|---|
startUrls | JIG member directory page | Only the directory page itself is needed — page 1 is scraped directly, later pages are fetched automatically via the site's own AJAX endpoint |
maxItems | 100 | Maximum member rows to scrape |
maxPages | 20 | Safety cap on directory pages paged through (directory is ~4 pages / 194 members as of 2026-08-02, and will grow) |
delaySeconds | 1.0 | Polite delay before each page fetch |
Pagination is inherently sequential (each page's existence can only be confirmed by fetching it — there's no known total-page-count up front), so page fetches are not batched with concurrency; all member data lives directly in each listing page, so there is no separate per-item detail-page fetch loop for concurrency to apply to.
Pricing
$5 per 1,000 results. The full directory is ~194 members, so a complete run costs under $1. Example costs:
| Results | Cost |
|---|---|
| 100 | $0.50 |
| 500 | $2.50 |
| 1,000 | $5.00 |
| 5,000 | $25.00 |
Notes
- Public data only — no login required, no personal names/emails collected (company-level fields only).
robots.txtexplicitly allows the AJAX endpoint (admin-ajax.php) used for pagination.