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.
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.
Search intent: B2B portal · authenticated scraping · session management · CSRF automation
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.
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.
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.
Inspect fit
Review the request shape, limits and a bounded demo using only authorized inputs.
Choose a RapidAPI plan
Open the listing and select the plan that matches your expected usage. 50 sandbox operations/month
Call through the gateway
Use the RapidAPI snippets and marketplace credentials shown on the listing; do not expose credentials in source code or templates.
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.
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"}'{"status":"active","sessionId":"eyJ...","expiresInMinutes":60,"csrfToken":"csrf_..."}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"}'{"portal":"demo-supplier.local","rows":[{"sku":"ALU-100","price":"€ 12.40"}],"refreshedCsrfToken":"csrf_..."}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.