Class DataForSeoAPISearch

Description

Represents a wrapper class to work with DataForSEO SERP API.

Hierarchy

  • Tool
    • DataForSeoAPISearch

Constructors

  • Parameters

    Returns DataForSeoAPISearch

    Description

    Sets up the class, throws an error if the API login/password isn't provided.

Properties

description: string = "A robust Google Search API provided by DataForSeo. This tool is handy when you need information about trending topics or current events."
name: string = "dataforseo-api-wrapper"
apiLogin: string
apiPassword: string
defaultParams: Record<string, string | number | boolean> = ...

Description

These are the default parameters to be used when making an API request.

jsonResultFields: undefined | string[]
jsonResultTypes: undefined | string[]
params: Record<string, string | number | boolean> = {}
topCount: undefined | number
useJsonOutput: boolean = false

Methods

  • Parameters

    • keyword: string

    Returns Promise<any[]>

    Method

    results

    Description

    Fetches the results from the API for the given keyword.

  • Parameters

    • keyword: string

    Returns Promise<ApiResponse>

    Method

    getResponseJson

    Description

    Executes a POST request to the provided URL and returns a parsed JSON response.

  • Parameters

    • keyword: string

    Returns {
        data: BodyInit;
        headers: HeadersInit;
        url: string;
    }

    • data: BodyInit
    • headers: HeadersInit
    • url: string

    Method

    prepareRequest

    Description

    Prepares the request details for the API call.

  • Parameters

    • res: ApiResponse

    Returns string

    Method

    processResponse

    Description

    Processes the response to extract meaningful data.

Generated using TypeDoc