action nytimes_get_year_month_json { label: "Archive API" description: "The Archive API provides lists of NYT articles by month going back to 1851. Simply pass in the year and month you want and it returns a JSON object with all articles for that month.\n" provider: nytimes method: GET path: "/{year}/{month}.json" encoding: json input: { type: "object" properties: { month: { type: "integer" format: "int32" } year: { type: "integer" format: "int32" } } required: ["month", "year"] additionalProperties: false } output: { type: "object" properties: { response: { type: "object" properties: { docs: { type: "array" items: { type: "object" properties: { _id: { type: "string" } abstract: { type: "string" } blog: { type: "array" items: { type: "object" } } byline: { type: "object" properties: { organization: { type: "string" } original: { type: "string" } person: { type: "array" items: { type: "object" } } } } document_type: { type: "string" } headline: { type: "object" properties: { kicker: { type: "string" } main: { type: "string" } } } keywords: { type: "object" properties: { name: { type: "string" } rank: { type: "string" } value: { type: "string" } } } lead_paragraph: { type: "string" } multimedia: { type: "array" items: { type: "object" properties: { caption: { type: "string" } copyright: { type: "string" } format: { type: "string" } height: { type: "integer" } subtype: { type: "string" } type: { type: "string" } url: { type: "string" } width: { type: "integer" } } } } news_desk: { type: "string" } print_page: { type: "string" } pub_date: { type: "string" } section_name: { type: "string" } slideshow_credits: { type: "string" } snippet: { type: "string" } source: { type: "string" } subsection_name: { type: "string" } type_of_material: { type: "string" } web_url: { type: "string" } word_count: { type: "string" } } } } meta: { type: "object" properties: { hits: { type: "integer" } offset: { type: "integer" } time: { type: "integer" } } } } } } } }