Returns all metrics from SEOmoz's Linkscape.
=getLinkscape(urlRange, optIncludeHeader)
Original by http://www.tomanthony.co.uk/blog/seomoz-linkscape-api-with-google-docs/ Modified so that you can select a large range of URLs and it will get the metrics in batches of 10.
Name | Type | Description |
---|---|---|
urlRange |
string[] | One or more URLs to send to Linkscape |
optIncludeHeader |
boolean | Include the header? (Default is true) |
Cells: A1: www.seerinteractive.com A2: http://www.domain.com/blog A3: http://www.anotherdomain.com/page.html // => Gets current data on www.seerinteractive.com =getLinkscape("www.seerinteractive.com") // => Gets current data on www.seerinteractive.com =getLinkscape(A1) // => Gets data for three URLS in a batch =getLInkscape(A1:A3) // => Gets data for three URLS in a batch and reomves the header row =getLInkscape(A1:A3, false)