action instagram_get_media_search { label: "Search for media in a given area." description: "Search for media in a given area. The default time span is set to 5 days. The time span must not exceed 7 days.\nDefaults time stamps cover the last 5 days. Can return mix of `image` and `video` types.\n" provider: instagram method: GET path: "/media/search" encoding: json input: { type: "object" properties: { distance: { type: "string" } lat: { type: "string" } lng: { type: "string" } max_timestamp: { type: "string" } min_timestamp: { type: "string" } } required: ["lat", "lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }