npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-alphaloops-freight

v0.1.12

Published

n8n community node for AlphaLoops FMCSA carrier data API

Readme

n8n-nodes-alphaloops-freight

This is an n8n community node for the AlphaLoops FMCSA API. It lets you access US trucking carrier data — profiles, fleet, inspections, crashes, authority history, news, and contacts — directly inside your n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Prerequisites

You need an AlphaLoops API key. Sign up at runalphaloops.com to get one, regardless of which installation path you take.

Installation (n8n Hosted)

Unfortunately, n8n does not allow installation of packages. However, you can call AlphaLoops' MCP server or REST API from n8n.

Installation (Self Hosted n8n)

Follow the installation guide in the n8n community nodes documentation. There are two approaches, one for Docker and one for non-Docker; but both boil down to

npm install n8n-nodes-alphaloops-freight

Once you've restarted n8n with the n8n-nodes-alphaloops-freight package installed:

  1. Open your desired workflow and go to the Credentials tab:
  1. You'll see AlphaLoops as an option, click the triple dots to open:
  1. Enter your API key and save it.

  2. At this point, you can inset AlphaLoops calls into your n8n workflows:

Resources and Operations

Carrier

| Operation | Description | |---|---| | Get by DOT | Get a carrier profile by USDOT number (200+ fields, optional field projection) | | Get by MC | Get a carrier profile by MC/MX docket number | | Search | Fuzzy search carriers by name, with optional state/city/domain filters | | Filtered Query | Query carriers with include/exclude JSON filters (supports range, boolean, array, geo-radius) | | Get Authority | Get operating authority history for a carrier | | Get News | Get news articles about a carrier, with optional date filters |

Fleet

| Operation | Description | |---|---| | Get Trucks | List registered trucks for a carrier by DOT number | | Get Trailers | List registered trailers for a carrier by DOT number |

Inspections

| Operation | Description | |---|---| | List | List roadside inspection records for a carrier | | Get Violations | Get violations for a specific inspection by ID |

Crashes

| Operation | Description | |---|---| | List | List crash records for a carrier, with optional severity and date filters |

Contacts

| Operation | Description | |---|---| | Search | Find people at a carrier or company (by DOT, company name, job title, seniority level) | | Enrich | Get verified emails and phone numbers for a contact (1 credit per new lookup, cached free) |

Example Usage

Look up a carrier and get their fleet

  1. Add an AlphaLoops node, set Resource to Carrier, Operation to Get by DOT, and enter a DOT number (e.g. 80806)
  2. Chain a second AlphaLoops node, set Resource to Fleet, Operation to Get Trucks, and wire the DOT number from the first node's output

Find carriers in Texas with 5+ trucks

  1. Add an AlphaLoops node, set Resource to Carrier, Operation to Filtered Query
  2. In the Include Filters field, enter:
    {
      "state": "TX",
      "has_common_authority": true,
      "power_units": { "min": 5 }
    }

Search for contacts at a carrier

  1. Add an AlphaLoops node, set Resource to Contacts, Operation to Search
  2. Enter a DOT number and optionally filter by job title or seniority level
  3. Chain an Enrich operation to get verified contact details

API Documentation

Full API docs: runalphaloops.com/fmcsa-api/docs

License

MIT