Notamify API
Notamify API v2
Notamify API v2
  • Welcome
  • Basics
    • Quick start
    • Authentication guide
    • Notamify API Credits
  • Notam Time Filtering
  • NOTAMs Archive endpoint (get-historical-notam)
  • NOTAMs Active endpoint (get-notams v2)
Powered by GitBook
On this page

NOTAMs Archive endpoint (get-historical-notam)

PreviousNotam Time FilteringNextNOTAMs Active endpoint (get-notams v2)

Last updated 1 month ago

The following document contains details about NOTAMs archive endpoint.

Please note that the endpoint is available only for Commercial users. Please contact sales at for details.

Limits:

The endpoint accepts 5 ICAO codes and 1 archive date per call.

Example param setup in the URL:

https://api.notamify.com/api/v2/notams/archive?location=EDDM&location=EGLL&valid_at=2024-09-20

notamify.com/contact
get
Authorizations
Query parameters
locationstring[]Optional

List of 4-character ICAO airport codes. Maximum 5 locations.

valid_atstring · dateRequired

Date to check NOTAM validity (YYYY-MM-DD). Cannot be in the future.

pageintegerOptional

Page number to retrieve. Defaults to 1.

Default: 1
per_pageinteger · min: 1 · max: 30Optional

Number of NOTAMs per page. Defaults to 30.

Default: 30
Responses
200
Success
application/json
get
GET /api/v2/notams/archive HTTP/1.1
Host: api.notamify.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Success

{
  "notams": [
    {
      "ends_at": "2025-03-21T15:30:00Z",
      "icao_code": "LIMA",
      "icao_message": "C0184/25 NOTAMN\nQ) LIMM/QFAXX/IV/NBO/A /000/999/4505N00736E005\nA) LIMA B) 2503181200 C) 2503211530\nD) 18 1200-1530, 19-21 0800-1100 1200-1530\nE) TESTO ITALIANO:\nTUTTO IL TRAFFICO E' SOGGETTO A RITARDI A CAUSAALL' ATTIVITA' DI\nLANCI PARACADUTISTICI MILITARI ANNUNCIATA DAL NOTAM W0738/25.\nTRAFFICO SERVIZIO MEDICO DI EMERGENZA CON ELICOTTERI (HEMS)\nNON INTERESSATO.\nRMK: TRAFFICO CONSENTITO PREVIO COORDINAMENTO CON LOCALE SERVIZIO\nAERONAUTICAL FLIGHT INFO UNIT (AFIU) LOCALE.\nENGLISH TEXT:\nALL TRAFFIC SUBJ DLA DUE TO MIL PJE ANNOUNCED BY NOTAM W0738/25.\nHELICOPTER EMERG MEDICAL SER (HEMS) NOT AFFECTED.\nRMK: TRAFFIC ALLOWED PRIOR COOR WITH LOCAL AERONAUTICAL FLIGHT INFO\nUNIT (AFIU).\nREF AIP AD 2 LIMA 1-1",
      "id": "263dbe90-b168-412f-aa9a-0555fa9cd736",
      "interpretation": {
        "affected_elements": [
          {
            "details": "Announced parachuting operations are causing delays to traffic.",
            "effect": "RESTRICTED",
            "identifier": "Notam W0738/25 parachuting area",
            "type": "AIRSPACE"
          },
          {
            "details": "All traffic subject to service delays due to parachuting military operations.",
            "effect": "RESTRICTED",
            "identifier": "AIR TRAFFIC CONTROL",
            "type": "SERVICE"
          }
        ],
        "category": "OTHER",
        "description": "All traffic is subject to delays due to military parachute drop activities announced in NOTAM W0738/25. Emergency medical service traffic is still operational during scheduled times.",
        "excerpt": "Traffic delays due to military parachute activities.",
        "schedules": [
          {
            "description": "On March 18 from 12:00 to 15:30.",
            "is_sunrise_sunset": false,
            "rrule": "DTSTART:20250318T120000Z\nRRULE:FREQ=DAILY;UNTIL=20250318T153000Z;BYHOUR=12;BYMINUTE=0;BYSECOND=0",
            "source": "18 1200-1530"
          },
          {
            "description": "On March 19 to 21 from 08:00 to 11:00 and 12:00 to 15:30.",
            "is_sunrise_sunset": false,
            "rrule": "DTSTART:20250319T080000Z\nRRULE:FREQ=DAILY;COUNT=3;BYHOUR=8;BYMINUTE=0;BYSECOND=0",
            "source": "19-21 0800-1100 1200-1530"
          },
          {
            "description": "On March 19 to 21 from 12:00 to 15:30.",
            "is_sunrise_sunset": false,
            "rrule": "DTSTART:20250319T120000Z\nRRULE:FREQ=DAILY;COUNT=3;BYHOUR=12;BYMINUTE=0;BYSECOND=0",
            "source": "19-21 0800-1100 1200-1530"
          }
        ],
        "subcategory": "OTHER"
      },
      "is_estimated": false,
      "is_permanent": false,
      "issued_at": "2025-03-17T12:06:00Z",
      "location": "LIMA",
      "message": "TESTO ITALIANO:\nTUTTO IL TRAFFICO E' SOGGETTO A RITARDI A CAUSAALL' ATTIVITA' DI\nLANCI PARACADUTISTICI MILITARI ANNUNCIATA DAL NOTAM W0738/25.\nTRAFFICO SERVIZIO MEDICO DI EMERGENZA CON ...",
      "notam_number": "C0184/25",
      "starts_at": "2025-03-18T12:00:00Z"
    }
  ],
  "page": 1,
  "per_page": 1,
  "total_count": 261
}