Authenticated e-commerce scraping automation that extracts product information from a protected dashboard using Auth Sessions.
| API | Description |
|---|---|
list |
List products from the authenticated dashboard |
details |
Get detailed information for a specific product |
uv syncIf the intuned CLI is not installed, install it globally:
npm install -g @intuned/cliAfter installing dependencies, intuned command should be available in your environment.
Before running any API, provision and deploy the project first.
intuned dev provision
intuned dev deployintuned dev run api list .parameters/api/list/default.json --auth-session test-authsession
intuned dev run api details .parameters/api/details/default.json --auth-session test-authsession# Create
intuned dev run authsession create .parameters/auth-sessions/create/default.json
# Validate
intuned dev run authsession validate test-authsession
# Update
intuned dev run authsession update test-authsession/
├── api/
│ ├── list.py # List products from the authenticated dashboard
│ └── details.py # Get detailed product information
├── auth-sessions/
│ ├── check.py # Validates if the auth session is still active
│ └── create.py # Creates/recreates the auth session
├── auth-sessions-instances/
│ └── test-authsession/ # Example local auth session
│ ├── auth-session.json
│ └── metadata.json
├── utils/
│ └── types_and_schemas.py # Python types and Pydantic models
├── intuned-resources/
│ ├── jobs/
│ │ └── list.job.jsonc # Top-level job example for the list -> details flow
│ └── auth-sessions/
│ └── test-authsession.auth-session.jsonc # Auth session credentials
├── .parameters/api/ # Test parameters
├── Intuned.jsonc # Project config
├── pyproject.toml # Python dependencies
└── README.md
Scrapes products from the authenticated dashboard.
Parameters: None
Returns: List of products with:
name: Product namedetailsUrl: URL to product details page
Features:
- Requires authenticated session
- Automatically navigates to dashboard
- Triggers
detailsAPI for each product usingextend_payload
Scrapes detailed information for a specific product.
Parameters:
name: Product namedetailsUrl: URL to the product details page
Returns: Product details object with:
name: Product nameprice: Product pricesku: Stock Keeping Unitcategory: Product categoryshortDescription: Brief product descriptionfullDescription: Complete product descriptionimageAttachments: List of product images (uploaded to S3)availableSizes: List of available sizesavailableColors: List of available colorsvariants: List of product variants with stock information
This project uses the Intuned browser SDK for enhanced reliability:
go_to_url: Navigate to URLs with automatic retries and intelligent timeout detectionsave_file_to_s3: Automatically upload images and files to S3 storageextend_payload: Trigger additional API calls dynamically (used to triggerdetailsAPI for each product)
For more information, check out the Intuned Browser SDK documentation.