For the complete documentation index, see llms.txt. This page is also available as Markdown.

Simple Briefing endpoint

Generate simple airport briefing

get

Returns an immediate, airport-focused NOTAM briefing: a readable summary of active notices for the requested airports, plus the NOTAM identifiers referenced.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
locationstring · min: 3 · max: 4Required

Single ICAO airport code for the briefing. Multiple locations are not supported by this endpoint.

Pattern: ^[A-Za-z0-9]{3,4}$
starts_atstring · date-time · nullableOptional

Start datetime for the briefing window. Accepts YYYY-MM-DD or full ISO datetime. Defaults to the start of the selected UTC day.

ends_atstring · date-time · nullableOptional

End datetime for the briefing window. Accepts YYYY-MM-DD or full ISO datetime. Defaults to the end of the selected UTC day.

typestringOptional

Briefing verbosity. Supported values: concile, detailed.

Default: concile
Responses
200

Airport briefing generated successfully

application/json
locationstringRequired

ICAO airport code covered by the briefing.

summarystringRequired

Generated airport briefing summary text.

notam_idsstring[]Optional

NOTAM numbers used to generate the briefing, in briefing order.

get/notams/briefing/simple
GET /api/v2/notams/briefing/simple?location=text HTTP/1.1
Host: api.notamify.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "location": "EPWA",
  "summary": "### EPWA\n- Runway 11/29 closed daily 20:00-04:00 UTC.\n- ILS RWY 11 unavailable during the same period.",
  "notam_ids": [
    "A0681/25",
    "A0682/25"
  ]
}

Last updated