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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 1x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { DFSEO } from "../.."; export class CompetitorResearch { constructor(private DFSEO: DFSEO) {} rankedKeywords(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/ranked_keywords/live", data, }); } serpCompetitors(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/ranked_keywords/live", data, }); } competitorsDomain(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/competitors_domain/live", data, }); } domainIntersection(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/domain_intersection/live", data, }); } subdomains(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/subdomains/live", data, }); } relevantPages(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/relevant_pages/live", data, }); } domainRankOverview(data: any) { return this.DFSEO.fetch({ method: "POST", url: "dataforseo_labs/domain_rank_overview/live", data, }); } } |