League of American Bicyclists BFB/BFC/BFU Directory Scraper avatar

League of American Bicyclists BFB/BFC/BFU Directory Scraper

Pricing

Pay per event

Go to Apify Store
League of American Bicyclists BFB/BFC/BFU Directory Scraper

League of American Bicyclists BFB/BFC/BFU Directory Scraper

Scrapes the League of American Bicyclists' Bicycle Friendly Business (BFB), Bicycle Friendly Community (BFC), and Bicycle Friendly University (BFU) award directories. Returns all certified organisations with award level, location, industry, employee count, contact email, and website.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

Scrapes the League of American Bicyclists' Bicycle Friendly America (BFA) award database — all certified Bicycle Friendly Businesses (BFB), Bicycle Friendly Communities (BFC), and Bicycle Friendly Universities (BFU). Returns every awarded organisation with its award level, location, industry, contact email, and website in a single run.

What you get

FieldDescription
org_nameOrganisation name
org_typeProgram: BFB, BFC, or BFU
award_levelAward tier: Platinum, Gold, Silver, Bronze, Honorable Mention
award_roundAward round, e.g. Spring 2018
cityCity
stateUS state abbreviation
postal_codePostal / ZIP code
latitudeLatitude (decimal degrees)
longitudeLongitude (decimal degrees)
industryIndustry or sector (BFBs only)
employee_countNumber of employees disclosed (BFBs only)
student_enrollmentStudent enrollment (BFUs only)
populationCommunity population (BFCs only)
jurisdictionJurisdiction type, e.g. Town/City/Municipality (BFCs only)
websiteOrganisation website
contact_emailContact email from the directory listing
facebookFacebook URL
twitterTwitter/X URL
salesforce_idSalesforce record ID
source_urlAward database page URL

Coverage

  • BFB (Bicycle Friendly Business): 1,100+ certified businesses — shops, offices, universities, healthcare providers, government agencies
  • BFC (Bicycle Friendly Community): 450+ cities, counties, and municipalities
  • BFU (Bicycle Friendly University): 200+ accredited universities and colleges

Run all three programs in a single execution or target individual programs via the programs input.

Input

FieldTypeDefaultDescription
programsArray["bfb","bfc","bfu"]Which programs to scrape. Any combination of "bfb", "bfc", "bfu".
maxItemsInteger(all)Maximum records to return across all programs. Omit or set 0 for all.

Example: All three programs

{
"programs": ["bfb", "bfc", "bfu"]
}

Example: Bicycle Friendly Businesses only, capped at 100

{
"programs": ["bfb"],
"maxItems": 100
}

Example: Communities and Universities

{
"programs": ["bfc", "bfu"]
}

How it works

The BFA award database page loads data asynchronously from a WordPress AJAX endpoint that returns the complete dataset in a single JSON call per program type — no pagination. The scraper calls this endpoint directly (one request per program), merges the results, and applies the optional maxItems cap. A full run of all three programs typically completes in under 30 seconds.

Sample output

{
"org_name": "Ride On Bikes",
"org_type": "BFB",
"award_level": "Platinum",
"award_round": "Spring 2018",
"city": "Columbus",
"state": "GA",
"postal_code": "31901",
"latitude": 32.465377,
"longitude": -84.993294,
"industry": "Bicycle Shop",
"employee_count": 12,
"student_enrollment": null,
"population": null,
"jurisdiction": null,
"website": "http://rideonbikes.com",
"contact_email": "rideon@rideonbikes.com",
"facebook": "https://www.facebook.com/rideonbikes",
"twitter": null,
"salesforce_id": "001G000000tq8zlIAA",
"source_url": "https://bikeleague.org/bfa/award-database/"
}

Use cases

  • Lead generation — identify bike-friendly businesses and institutions for cycling-related products and services
  • Market research — map the distribution of bike-friendly organisations by geography, industry, or award tier
  • Policy research — track adoption of Bicycle Friendly Community designations across US jurisdictions
  • Partnership sourcing — find certified bicycle-friendly organisations for co-marketing, sponsorship, or grant programs

FAQ

Does the scraper return all records? Yes. Each program's endpoint returns the complete dataset in one call. maxItems applies post-collection as a cap, not as a filter that could miss records.

What program types are available? Three: bfb (businesses), bfc (communities/municipalities), bfu (universities). All are scraped by default. Specify one or more in the programs array to narrow the run.

Are all fields populated for every record? No — fields are program-specific. industry and employee_count appear on BFB records; student_enrollment on BFUs; population and jurisdiction on BFCs. Records from other programs carry null for fields that don't apply. contact_email, facebook, and twitter depend on what each organisation has disclosed in the directory.

How fresh is the data? The endpoint reflects the live BFA award database as of the moment the scraper runs. The League updates awards on a rolling basis.