Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 2.07 KB

BacklinksBulkSpamScoreLiveRequestInfo.md

File metadata and controls

30 lines (21 loc) · 2.07 KB

BacklinksBulkSpamScoreLiveRequestInfo

Properties

Name Type Description Notes
targets List[str] domains, subdomains or webpages to get rank for required field you can set up to 1000 domains, subdomains or webpages the domain or subdomain should be specified without https:// and www. the page should be specified with absolute URL (including http:// or https://) example: "targets": [ "forbes.com", "cnn.com", "bbc.com", "yelp.com", "https://www.apple.com/iphone/", "https://ahrefs.com/blog/", "ibm.com", "https://variety.com/", "https://stackoverflow.com/", "www.trustpilot.com" ] [optional]
tag str user-defined task identifier optional field the character limit is 255 you can use this parameter to identify the task and match it with the result you will find the specified tag value in the data object of the response [optional]

Example

from dataforseo_client.models.backlinks_bulk_spam_score_live_request_info import BacklinksBulkSpamScoreLiveRequestInfo

# TODO update the JSON string below
json = "{}"
# create an instance of BacklinksBulkSpamScoreLiveRequestInfo from a JSON string
backlinks_bulk_spam_score_live_request_info_instance = BacklinksBulkSpamScoreLiveRequestInfo.from_json(json)
# print the JSON string representation of the object
print(BacklinksBulkSpamScoreLiveRequestInfo.to_json())

# convert the object into a dict
backlinks_bulk_spam_score_live_request_info_dict = backlinks_bulk_spam_score_live_request_info_instance.to_dict()
# create an instance of BacklinksBulkSpamScoreLiveRequestInfo from a dict
backlinks_bulk_spam_score_live_request_info_from_dict = BacklinksBulkSpamScoreLiveRequestInfo.from_dict(backlinks_bulk_spam_score_live_request_info_dict)

[Back to Model list] [Back to API list] [Back to README]