Skip to content

Latest commit

 

History

History

README.md

starter-network-interception (Python)

Minimal starter showing how to capture API responses from a page by listening to network traffic.

Run on Intuned

APIs

API Description
sample-capture-api Navigates to a URL and captures all JSON responses whose URL matches the given pattern

Getting Started

Install dependencies

uv sync

If the intuned CLI is not installed, install it globally:

npm install -g @intuned/cli

Run an API

intuned dev run api sample-capture-api .parameters/api/sample-capture-api/default.json

Save project

intuned dev provision

Deploy

intuned dev deploy

Project Structure

starter-network-interception/
├── api/
│   └── sample-capture-api.py                          # Captures API responses matching a URL pattern
├── intuned-resources/
│   └── jobs/
│       └── sample-capture-api.job.jsonc
├── .parameters/
│   └── api/
│       └── sample-capture-api/
│           └── default.json
├── Intuned.jsonc
├── pyproject.toml
└── README.md

Related