Skip to content
RTILA Web Business Automation
  • Home
  • Download
  • Features
  • Pricing
  • Marketplace
  • Support
    • Documentation

Cart

RTILA Web Business Automation
  • Home
  • Download
  • Features
  • Pricing
  • Marketplace
  • Support
    • Documentation
Free Download
Free Download

API & Cloud

3
  • V8 API Results Endpoint
  • V8 API Remote Execution
  • V8 API Overview

Billing & Licensing

10
  • Change License’s registered email address
  • Upgrade a License
  • Manage License Activation Count
  • RTILA Studio local database
  • Standalone Exe Antivirus False Positive Alert
  • Team Member Activation URL & License
  • AppSumo Codes Redemption
  • Download & Activate RTILA Studio
  • AppSumo Code Stacking & Upgrade
  • Mac OS Installation Warning

Custom Commands

36
  • WordPress Posts via API (beta)
  • Webhook Send Request
  • Target Text Before After
  • Download File to Folder
  • Clipboard Copy & Paste
  • ChatGPT API Full Control
  • Generate Random Numbers and Text
  • Regex & JS Filters
  • API Bridge Get Post Requests
  • WhatsApp API send MSG
  • GET HTML
  • Slack Notification Command
  • Target Elements With Text Value
  • Directory Get Files Path
  • Folder and File Monitoring
  • Get iFrame URL
  • Get File Content
  • Verify License Easy Digital Downloads
  • Save Variable to File
  • Rename File
  • Move File to New Directory
  • Delete File
  • Mouse Events
  • Get System Info
  • Airtable Get & Update Records
  • Email Send Via SMTP
  • Wait For Element to disappear
  • OCR Passport Reader
  • Target Element in Shadow Dom
  • Airtable Get Records
  • Airtable Update Records
  • Sanitize URL
  • Email Verification
  • Get Hardware ID HWID
  • Timestamp Unix and UTC
  • Switch Tab Focus Command

How-To & Tutorials

42
  • How to target a CSS element
  • Change default Browser
  • Export Results to a CSV file
  • Profile Session Feature
  • OCR Feature: read text from images
  • Auto Download Pinterest Images
  • Save current URL using JavaScript
  • Search & Filter Projects
  • Error handling Strategy
  • Working with Arrays and Objects in RTILA
  • Auto Comment On WordPress Posts
  • Run Automations in Silent Mode
  • License Check for Standalone Executables
  • Trigger Standalone Bots via Command lines
  • How To Find Custom Collections For List type Datasets
  • Correcting & Completing Auto-Recorder Commands
  • RTILA WordPress Plugin installation & configuration
  • Using Developer Tools In RTILA Studio
  • Create A Project From Scratch
  • Bring back disappearing commands & properties
  • Export & share an RTILA project file
  • Install Browser Extensions using Profile Session
  • How To Fill a Form Using Generic Form Filler Child-Project
  • Project Settings: Import URLs manual entry, From File, From Project, and Read XML Sitemap
  • Project Settings: Import URLs manual entry
  • Use Local Storage Variable to scrape Do-follow Links
  • Schedule Launch of Automations
  • Email Results File via Gmail
  • Read from Google Sheets & Post on WordPress
  • Website Load Testing Automation
  • Read data from a txt or csv file
  • Downloading files
  • Open in a New tab
  • Using filters to complete a URL
  • Choosing the right collection
  • Set a Counter with JavaScript
  • Setup reCAPTCHA Resolution
  • Woo Categories & ChatGPT API
  • Login to Google Account & share profile session
  • Google Search Baby Steps
  • Auto-Recorder as a 1st step
  • Standalone Executable Bots

Official Commands

58
  • List Command
  • Incogniton Anti-detect browser
  • Save results to file command
  • RTILA Cloud API Documentation
  • FTP / SFTP Command
  • Custom Commands
  • Integrations
  • RPA & Desktop OS Commands
  • Add And Configure Dataset Properties
  • Inspection Panel Interface & Elements
  • Config & binaries files for Standalone
  • Focus On Element Command
  • Go To Url Command
  • Scroll Element Command
  • Execute JavaScript Code command
  • Reload Page Command
  • Compare Variables Condition
  • Take Screenshot Command
  • Smart Variable (ChatGPT API)
  • Child Projects
  • Confirm (Dialog Box) Command
  • Populate Text Field Command
  • Hover Mouse On Element Command
  • Download Page Command
  • Stop Automation Command
  • Log Message Command
  • Input (prompt box) Variable
  • Extract Results Command
  • Wait for Element to Appear Command
  • Selector (DOM element)
  • Check Radio Input Command
  • Dynamic Variable (JavaScript Code)
  • Static Variables
  • Set Checkbox State Command
  • Set Dropdown Value Command
  • Press a Keyboard Key Command
  • Upload File Command
  • Double Click On An Element Event
  • Click On An Element Event
  • Switch Browser Identity Command
  • Slack Notification Command
  • Save as Pdf Command
  • Go Back To Previous Page Command
  • Go Forward To Next Page Command
  • Proxies Built-In Rotation
  • External Proxy Rotation API
  • Regular Expressions
  • Mock Location Command
  • Close Page Command
  • Desktop Notification Command
  • Command Folder
  • Clear Cookie Command
  • Change Page Size Command
  • Break Loop Command
  • DataSet Types
  • Link Crawler Command
  • Alert Message Command
  • Wait Commands
  • Home
  • Docs
  • API & Cloud
  • V8 API Results Endpoint
View Categories

V8 API Results Endpoint

V8 API Results Endpoint (/api/results) #

The Results endpoint allows you to retrieve data produced by RTILA project executions. It supports a powerful filter language, pagination, and sorting so you can select exactly the records you need.

To see how this endpoint fits into the full workflow, start with V8 API Overview, and for triggering new runs see V8 API Remote Execution.

Endpoint Summary #

MethodGET
Path/api/results
Base URL (Local)http://127.0.0.1:8880
Base URL (Remote/Public)https://YOUR_PUBLIC_RTILA_HOST

Request #

Headers #

HeaderTypeRequiredDescription
AuthorizationstringYesBearer YOUR_SYSTEM_AUTH_TOKEN (JWT from RTILA Studio).

Query Parameters #

ParameterTypeRequiredDescription
filterstringYes SQL-like filter expression to select records (e.g. by sessionId, dataset, or custom fields).
pagenumberNoPage number for pagination. Default is 1.
perPagenumberNoItems per page. Default is 30.
sortstringNo Field to sort by. Prefix with - for descending (e.g. -created, -Price).

Filtering (filter) #

The filter parameter uses a parenthesized, SQL-like syntax:

filter=(<field><operator>'<value>')

Equality #

filter=(sessionId='ilh2f81bq46wedu')

Most commonly used to restrict results to a single execution run (session).

AND (&&) #

filter=(sessionId='ilh2f81bq46wedu' && dataset='BookData')

OR (||) #

filter=(price='£53.74' || price='£51.77')

Common Fields #

  • sessionId – essential when working with remote runs; use the queueId from POST /api/remote.
  • dataset – restricts results to a specific dataset (e.g. BookData).
  • Custom data fields – you can filter on any field stored in your dataset (e.g. Title, Price, Image_url, Status).

Example: Filter by Session and Title #

curl -X GET "http://127.0.0.1:8880/api/results?filter=(sessionId='ilh2f81bq46wedu' && Title='A Light in the Attic')" \
  -H "Authorization: Bearer YOUR_SYSTEM_AUTH_TOKEN"

Pagination (page & perPage) #

Use pagination to retrieve large result sets in manageable chunks.

  • perPage – items per page (default 30).
  • page – page number to retrieve (default 1).

Example: Page 3, 50 Items per Page #

curl -X GET "http://127.0.0.1:8880/api/results?filter=(sessionId='ilh2f81bq46wedu')&perPage=50&page=3" \
  -H "Authorization: Bearer YOUR_SYSTEM_AUTH_TOKEN"

Sorting (sort) #

Sort the results by a field in ascending or descending order.

Ascending #

sort=Price
sort=Title

Descending #

sort=-created
sort=-Price

A common pattern is sort=-created to get the newest records first.

Example: Newest Records First #

curl -X GET "http://127.0.0.1:8880/api/results?filter=(sessionId='ilh2f81bq46wedu')&sort=-created" \
  -H "Authorization: Bearer YOUR_SYSTEM_AUTH_TOKEN"

Combining Filter, Pagination & Sorting #

You can combine all options in a single request.

Goal:

  • Within a specific sessionId
  • Limit to dataset BookData
  • Filter to items with price > £50
  • Sort from highest to lowest price
  • Return only the first 10 items

Note: The comparison operator (>) here is illustrative. Depending on how your data is stored (strings vs numbers), you may need to normalize values or adjust the operator.

curl -X GET "https://YOUR_PUBLIC_RTILA_HOST/api/results?filter=(sessionId='ilh2f81bq46wedu' && dataset='BookData' && Price > '50.00')&sort=-Price&perPage=10&page=1" \
  -H "Authorization: Bearer YOUR_SYSTEM_AUTH_TOKEN"

Response Structure #

{
  "items": [
    {
      "Title": "Tipping the Velvet",
      "Price": "£53.74",
      "Image_url": "https://books.toscrape.com/media/cache/26/0c/260c6ae16bce31c8f8c95daddd9f4a1c.jpg",
      "id": "record-id",
      "collectionId": "collection-id"
      /* additional metadata fields may be present */
    }
  ],
  "page": 1,
  "perPage": 30,
  "totalItems": 1,
  "totalPages": 1
}
FieldTypeDescription
itemsarrayArray of result records (one object per row in your dataset).
pagenumberCurrent page number.
perPagenumberNumber of items returned per page.
totalItemsnumberTotal number of items that match the filter.
totalPagesnumberTotal pages available given perPage and the filter.

Each object in items contains:

  • Your dataset fields (e.g. Title, Price, Image_url).
  • System metadata fields (e.g. id, collectionId, timestamps).

To create new runs and get fresh data into this endpoint, use V8 API Remote Execution (/api/remote).

    Still stuck? How can we help?

    How can we help?

    Updated on 30/11/2025
    V8 API Remote Execution
    Table of Contents
    • V8 API Results Endpoint (/api/results)
      • Endpoint Summary
      • Request
        • Headers
        • Query Parameters
      • Filtering (filter)
        • Equality
        • AND (&&)
        • OR (||)
        • Common Fields
        • Example: Filter by Session and Title
      • Pagination (page & perPage)
        • Example: Page 3, 50 Items per Page
      • Sorting (sort)
        • Ascending
        • Descending
        • Example: Newest Records First
      • Combining Filter, Pagination & Sorting
      • Response Structure

    INFO & LEGALS

    PRICING
    PAYMENTS & REFUND
    COOKIES - PRIVACY
    LICENSE AGREEMENT

    DOWNLOADS

    DOWNLOAD RTILA
    BOT LAUNCHER
    BOT & TEMPLATES
    PARTNERSHIPS

    RESOURCES

    VIDEO TUTORIALS
    DOCUMENTATION
    SUPPORT PORTAL
    FACEBOOK GROUP

    stay in touch

    Subscription Form

    follow us on

    • Facebook
    • YouTube
    • RTILA LinkedIn Page
    Copyright © RTILA CORPORATION