Crowley Shipping & Logistics Advisories Scraper avatar

Crowley Shipping & Logistics Advisories Scraper

Pricing

from $1.00 / 1,000 notice scrapeds

Go to Apify Store
Crowley Shipping & Logistics Advisories Scraper

Crowley Shipping & Logistics Advisories Scraper

Scrape Crowley Maritime's surcharge, terminal handling charge, port omission and vessel schedule change notices as structured JSON, with the full notice body, classified by type and date-filterable.

Pricing

from $1.00 / 1,000 notice scrapeds

Rating

0.0

(0)

Developer

Arman Hossain

Arman Hossain

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

12 days ago

Last modified

Categories

Share

Crowley Advisories: Every customer notice, rate change and terminal handling charge, with full body text

Crowley Maritime publishes its surcharge changes, terminal handling charges, port omissions and vessel schedule updates as regular posts on crowley.com, one notice per event. This Actor reads that feed as structured JSON: the classified notice type, the full body text (effective dates, charge amounts, ports affected), and the publish and last-modified timestamps, filterable by date range and full-text search.

This is the schedule-change and local-charge-tariff slice of Crowley's Latin America, Caribbean, Central America and Puerto Rico trades, the kind of update that otherwise arrives as a PDF attachment on a mailing list.

Agent skill: SKILL.md

https://api.apify.com/v2/key-value-stores/t7YoTxpZEJOWvw4Ug/records/crowley-shipping-advisories-scraper.md

What you get

FieldWhat it holds
idCrowley's post ID, the stable identifier for this notice
noticeTypeClassified from the title: SURCHARGE, TERMINAL_HANDLING_CHARGE, VESSEL_SCHEDULE_CHANGE, PORT_OMISSION, RATE_OR_CHARGE_CHANGE, HOLIDAY_SCHEDULE, WEATHER_ADVISORY, REGULATORY_NOTICE, or OTHER when nothing fits
titleNotice title, HTML entities decoded
slugURL slug
linkCanonical URL on crowley.com
publishedAt, modifiedAtISO 8601 UTC timestamps
excerptAuto-generated teaser, plain text
contentThe full notice body as plain text: effective dates, charge tables flattened to readable lines, ports affected
categoriesCrowley's own WordPress category IDs on the post
postTypeAlways post for this feed
scrapedAtRun timestamp

RUN_SUMMARY in the key-value store holds per-run counts, the filters you used, any date or notice-type value that could not be understood, and any page that failed.

Use cases

  • Freight audit and pay. Diff content against a customer's invoice line items to catch a surcharge that changed before the invoice was generated.
  • Rate management platforms. Pull noticeType: SURCHARGE and TERMINAL_HANDLING_CHARGE on a schedule to keep a local-charge tariff table current without a human reading PDFs.
  • Forwarder and BCO alerts. Filter to VESSEL_SCHEDULE_CHANGE and PORT_OMISSION for a lane-specific booking-risk feed.
  • Competitive intelligence. Track how often and by how much a carrier adjusts fuel surcharges relative to bunker price moves.
  • Compliance monitoring. REGULATORY_NOTICE surfaces documentation, inspection and tariff-ruling notices that affect customs clearance.

Quick start

The most recent notices, no filtering at all:

{}

Everything published this year in the two families that hit an invoice hardest:

{
"noticeTypes": ["SURCHARGE", "TERMINAL_HANDLING_CHARGE"],
"after": "2026-01-01",
"maxNotices": 200,
"maxPages": 10
}

A full-text search across the whole feed:

{
"search": "Costa Rica",
"maxNotices": 50
}

Input

FieldTypeDefaultNotes
afterstring(none)Earliest publish date to keep, YYYY-MM-DD or a full ISO timestamp. An unparseable value is dropped and recorded in RUN_SUMMARY.invalidInputs, not treated as fatal.
beforestring(none)Latest publish date to keep, same format as after.
searchstring(none)Full-text search applied server-side across the notice title and body.
noticeTypesarray[]Keep only these classified families. An unknown value is dropped and recorded in RUN_SUMMARY.invalidInputs rather than silently matching nothing. Empty means every type, including OTHER.
orderstringdescdesc for newest first, asc for oldest first.
maxNoticesinteger100Total saved for the run, the most you can be charged for. 0 means no limit, bounded only by maxPages.
maxPagesinteger5How many 100-notice pages to walk. The category holds roughly 1,900 notices, so 19 pages is a full backfill; raise this when a strict noticeTypes filter throws most of a page away.

Nothing is required. Running with no input returns the most recent notices across every type.

Output example

{
"id": 74740,
"noticeType": "TERMINAL_HANDLING_CHARGE",
"title": "Costa Rica Terminal Handling Charge Effective 09-13-2026",
"slug": "costa-rica-terminal-handling-charge-effective-09-13-2026",
"link": "https://www.crowley.com/uncategorized/costa-rica-terminal-handling-charge-effective-09-13-2026/",
"publishedAt": "2026-08-14T20:25:15Z",
"modifiedAt": "2026-08-14T20:25:20Z",
"excerpt": "Effective September 13, 2026, Crowley will implement an increase to the Costa Rica Terminal Handling Charge on inbound and outbound loads via Costa Rica ports.",
"content": "Effective September 13, 2026, Crowley will implement an increase to the Costa Rica Terminal Handling Charge on inbound and outbound loads via Costa Rica ports. This adjustment is due to operational cost increases from APM terminals.\n\nEquipment | Direction | Previous Charge | New Charge |\nAll Containerized Equipment | Inbound | $650 | $675 |\nAll Containerized Equipment | Outbound | $585 | $610 |",
"categories": [13, 1],
"postType": "post",
"scrapedAt": "2026-08-21T22:41:37.000Z"
}

Charge tables in the body are flattened from HTML into |-joined lines, one per row, so the amounts and directions in content stay readable and parseable without a browser or an HTML parser on your end.

API example

curl -X POST "https://api.apify.com/v2/acts/arman-bd~crowley-shipping-advisories-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"noticeTypes": ["SURCHARGE", "TERMINAL_HANDLING_CHARGE"],
"maxNotices": 100
}'

JavaScript example

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('arman-bd/crowley-shipping-advisories-scraper').call({
noticeTypes: ['VESSEL_SCHEDULE_CHANGE', 'PORT_OMISSION'],
after: '2026-01-01',
maxNotices: 100,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
for (const n of items) console.log(`${n.noticeType} | ${n.title} | ${n.publishedAt}`);

Notes

  • The category is resolved by its slug (shipping-logistics-announcements) at the start of every run rather than a fixed ID, so this keeps working if Crowley's site restructures its taxonomy.
  • noticeType is classified from the title using ordered pattern matching built from the titles actually observed in the feed. Most notices land cleanly in one family; anything that does not fit is OTHER, not forced into the nearest guess.
  • maxNotices and maxPages bound the run from two directions, whichever is hit first stops it. A strict noticeTypes filter over a quiet window can exhaust maxPages before reaching maxNotices; raise maxPages in that case.
  • content is fetched in the same request as the listing, no second fetch per notice is needed to get the full body.
  • after and before accept a bare date or a full timestamp. A bare date is anchored to the start of that day for after and the end of that day for before, so after: "2026-01-01", before: "2026-01-31" covers the whole month.
  • An unparseable date or an unrecognized noticeTypes value never fails the run. It is dropped, and RUN_SUMMARY.invalidInputs names exactly which field and value were ignored.

FAQ

Do I need an account or API key? No. The feed is read without credentials.

How far back does this go? The category holds roughly 1,900 notices going back over a decade, though the volume of surcharge and schedule notices increases sharply in recent years. maxPages up to 19 to 20 covers a full backfill at the default page size.

Why do some notices classify as OTHER? The feed also carries the occasional operational or terminal-system notice that does not fit any of the eight named families. content still carries the full body either way.

Can I get only new notices since my last run? Yes. Set after to the publishedAt of the newest notice you already have, and order: "asc" if you want to walk forward chronologically.

Does this cover other carriers? No, this Actor is scoped to Crowley Maritime's own advisories feed.