Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 1x 2x 1x 1x 1x 1x 1x 1x 1x | import { DFSEO } from "../../../..";
import { ISERP_Google_Organic_Live_Advanced_Post_Response, ISERP_Google_Organic_Live_Request } from "../../../../typings";
export class TaskLive {
constructor(private DFSEO: DFSEO) {}
/**
* Regulars task live - Live SERP provides real-time data on top 100 search engine results for the specified keyword, search engine, and location.
* @param data
* @returns regular
*/
regular(data: ISERP_Google_Organic_Live_Request[]): Promise<ISERP_Google_Organic_Live_Advanced_Post_Response> {
return this.DFSEO.fetch({
method: "POST",
url: "serp/google/organic/live/regular",
data,
});
}
/**
* Advanced task live - Live SERP provides real-time data on top 100 search engine results for the specified keyword, search engine, and location. This endpoint will supply a complete overview of featured snippets and other extra elements of SERPs.
* @param data
* @returns advanced
*/
advanced(data: ISERP_Google_Organic_Live_Request[]): Promise<ISERP_Google_Organic_Live_Advanced_Post_Response> {
return this.DFSEO.fetch({
method: "POST",
url: "serp/google/organic/live/advanced",
data,
});
}
/**
* Htmls task live - Live SERP HTML provides a raw HTML page of 100 search engine results for the specified keyword, search engine, and location.
* @param data
* @returns html
*/
html(data: ISERP_Google_Organic_Live_Request[]): Promise<ISERP_Google_Organic_Live_Advanced_Post_Response> {
return this.DFSEO.fetch({
method: "POST",
url: "serp/google/organic/live/html",
data,
});
}
}
|