Authorized B2B session and CSRF workflow API

Auth-Scraper - B2B Portal Session Automation

Auth-Scraper is a B2B Portal Session Automation API for explicitly authorized workflows. It demonstrates signed session credentials, CSRF-aware requests and isolated supplier-portal testing without storing third-party credentials.

Use this site to verify the contract and demo. Select a plan and receive marketplace credentials through RapidAPI.

RapidAPI discovery posture

Auth-Scraper - B2B Authenticated Portal Session API

B2B Authenticated Portal Session API for authorized Data Extraction workflows. Manage signed session state and CSRF-aware requests for approved supplier integrations without rebuilding the login boundary.

B2BPortal-AutomationSession-ManagementCSRFWeb-Scraping

Search intent: B2B portal · authenticated scraping · session management · CSRF automation

Open listing & choose a plan
Authorized sandbox only

Watch a session survive the login boundary.

This sandbox uses an isolated, fictional supplier portal. It demonstrates session cookies and CSRF-aware requests without contacting or storing credentials for any third-party system.

demo-supplier.local · sandbox scope
Demo supplier portaladmin/admin
Session tracewaiting
$ auth-scraper session create --sandbox
Waiting for authorized demo credentials…
Scope is locked to demo-supplier.local
Developer handoff

Copy the flow. Keep the authorization boundary.

import { AuthScraper } from "@foundry/auth-scraper";

const client = new AuthScraper({ apiKey: process.env.AUTH_SCRAPER_KEY });
const session = await client.sessions.create({
  portal: "demo-supplier.local",
  username: "admin",
  password: "admin"
});

const prices = await client.sessions.getPriceList(session.id);
console.table(prices.rows);

Scope-limited demo

The product demo only targets the fictional portal and rejects all other hosts and credentials.

Explicit authorization

Production workflows must be limited to portals that the customer is explicitly entitled to access.

Simple commercial unit

$49 per month includes 5 active portals for approved supplier integrations.

Auth-Scraper$49 / month5 active portals · authorized workflows only · session management layer
Marketplace activation

Verify here. Activate through RapidAPI.

Foundry/API provides the product explanation, demo boundaries and contract reference. The public RapidAPI listing is the single commercial path for plan selection, billing and marketplace credentials.

01

Inspect fit

Review the request shape, limits and a bounded demo using only authorized inputs.

02

Choose a RapidAPI plan

Open the listing and select the plan that matches your expected usage. 50 sandbox operations/month

03

Call through the gateway

Use the RapidAPI snippets and marketplace credentials shown on the listing; do not expose credentials in source code or templates.

Integration notes

RapidAPI-ready endpoint contracts.

Every endpoint documents a testable request shape or an explicit public-source requirement, plus a response example, so a developer can inspect the contract before running it through RapidAPI.

POST/api/v1/auth-scraper/sessions
curl --request POST \
  --url https://YOUR_RAPIDAPI_HOST/api/v1/auth-scraper/sessions \
  --header 'x-rapidapi-key: YOUR_KEY' \
  --header 'x-rapidapi-host: YOUR_RAPIDAPI_HOST' \
  --header 'Content-Type: application/json' \
  --data '{"portal":"demo-supplier.local","username":"admin","password":"admin"}'
200Example response
{"status":"active","sessionId":"eyJ...","expiresInMinutes":60,"csrfToken":"csrf_..."}
POST/api/v1/auth-scraper/price-list
curl --request POST \
  --url https://YOUR_RAPIDAPI_HOST/api/v1/auth-scraper/price-list \
  --header 'x-rapidapi-key: YOUR_KEY' \
  --header 'x-rapidapi-host: YOUR_RAPIDAPI_HOST' \
  --header 'Content-Type: application/json' \
  --data '{"sessionId":"SESSION_TOKEN_FROM_CREATE"}'
200Example response
{"portal":"demo-supplier.local","rows":[{"sku":"ALU-100","price":"€ 12.40"}],"refreshedCsrfToken":"csrf_..."}
Marketplace FAQ

Commercial and integration questions.

Where do I activate this API?

Choose a plan on the linked RapidAPI listing. The marketplace manages billing and provides the credentials and request snippets for the gateway.

How are limits enforced?

50 sandbox operations/month The listing shows the applicable plan and the request contract documents product-level safeguards.

What data is retained?

Retention differs by workflow and is documented in the Privacy notice. Do not send secrets, credentials, regulated data or content you are not authorized to process.

What support is included?

This site explains verified integration boundaries and support guidance. Marketplace plan questions and billing are handled through RapidAPI.