action archive_get_search_v1_scrape { label: "get_search_v1_scrape" description: "Scrape search results from Internet Archive, allowing a scrolling cursor\n" provider: archive method: GET path: "/search/v1/scrape" encoding: json output: { type: "object" description: "The result of a scrape request" properties: { count: { type: "integer" description: "Number of results returned" } cursor: { type: "string" description: "A scroll handle" } items: { type: "array" items: { type: "object" description: "One item returned (object of fields and values)" } } previous: { type: "object" additionalProperties: true } total: { type: "integer" description: "Total number of results from this cursor point" } } } }