The Processing API empowers you to effortlessly integrate ScrapeSuite functionality directly into your application. This API enables using created Parser within ScrapeSuite, offering real-time data collection capabilities. Parser configuration is exclusive to the ScrapeSuite application.
GET: https://app.scrapesuite.com/public/processing/{project_name}/{controller_name}/live?url={url}&localization={localization}&token={token}Description of the fields for sending a request:
| Field | Type | Description | 
| url | string | URL of the page to parse required parameter | 
| localization | string | page localization optional parameter; default value set in the controller | 
| token | string | authorization token required parameter | 
Description of the fields in the results array:
| Field | Type | Description | 
| result | object | object with the result | 
| task_id | string | task identifier unique task identifier in our system in the UUID format | 
| project_name | string | name of the project | 
| controller_name | string | name of the controller used for parsing | 
| datetime | datetime | timestamp of the task execution | 
| url | string | the original URL provided for parsing | 
| response_url | string | the URL used for the API request | 
| status_code | integer | response HTML status code | 
| result_status | enum | internal server status code | 
| error_message | string | general informational message | 
| processing_time | float | time taken to complete the task | 
| cost | float | cost of the task in credits | 
| result | object | object containing results | 
| status | enum | server response code | 
| elapsed | time | time of request execution | 
Response example:
{
  "result":{
    "task_id":"c27b3a89-e801-4143-acb9-c51c47747369",
    "project_name":"ScrapeSuite_API",
    "controller_name":"base_controller",
    "datetime":"2024-02-07T11:13:38.4536273+00:00",
    "url":"https://scrapesuite.com/",
    "response_url":"https://scrapesuite.com/",
    "status_code":200,
    "result_status":"ok",
    "error_message":null,
    "processing_time":9.7524236,
    "cost":10.0,
    "result":{
      "Main":"Welcome to ScrapeSuite – \nYour Ultimate Website Parsing Solution",
      "xpath":"/html[1]",
      "stream_position":15
    }
  },
  "status":"ok",
  "elapsed":"00:00:09.8025815"
}© ScrapeSuite 2025. All rights reserved.