Skip to content

Get review profile information and scraping status

Base URL

GET https://app.datashake.com/api/v2/profiles/info

Request parameters

job_id

integer Job identification.

Code example
curl GET 'https://app.datashake.com/api/v2/profiles/info?job_id=12345' -H 'spiderman-token: 1234567890'
import requests

url = "https://app.datashake.com/api/v2/profiles/info"
params = {
    "job_id": "12345",
}
headers = {
    "spiderman-token": "1234567890"
}
get(
    url=url,
    params=params,
    headers=headers
)
coming soon
coming soon
coming soon

Response

API Response example
{
    "success": true,
    "status": 200,
    "job_id": 12345,
    "source_url": "https://www.itcentralstation.com/products/microsoft-azure",
    "source_name": "itcentralstation",
    "place_id": null,
    "external_identifier": null,
    "meta_data": null,
    "unique_id": null,
    "review_count": 196,
    "average_rating": 4.2,
    "last_crawl": "2022-03-18",
    "crawl_status": "complete",
    "percentage_complete": 100,
    "result_count": 196,
    "credits_used": 201,
    "from_date": null,
    "blocks": null
}

We customize metadata for our customer’s needs. Information we retrieve always depends on the source page, and it varies. If you need any extra information from the website, let us know. Metadata is a JSON formatted string

Learn more about crawling status here

Maintenance

We are automatically notified about every job in maintenance status and we are doing our best to investigate and fix the issue as soon as possible.