Skip to main content
AI Studio  add-on for Spider.
shoplineapp.com

Shoplineapp Scraper

Extract product listings, prices, images, and availability data from Shoplineapp.

No key required
curl -X POST https://api.spider.cloud/scrape \
  -H "Content-Type: application/json" \
  -d '{"url": "https://open-api.docs.shoplineapp.com/docs/create-product", "return_format": "markdown"}'

This exact call produced the response beside it. Get a key →

Content
939 lines 29.2 KB markdown
Render
No browser plain request is enough
Fetch time
648 ms one measured fetch
This fetch cost
$0.000615 bandwidth plus compute
Create Product https://open-api.docs.shoplineapp.com/docs/create-product
**Home**Guides**API Reference**Changelogv2.340.0v2.341.0
The product data to be created
Product Original Selling Price 原價格
Product Price when doing discount 特價
suggest not to show price to user, user need to ask the merchant before buying, default: `false`
if unlimited_quantity is true, the product would have `unlimited` quantity and should ignore this field
main product and variation shared the same price (including original and member price)
1.If same_price is true, and variation_price is filled : Follow the price of Main products
2.If same_price is true, and variation_price is not filled : Follow the price of Main products
3.If same_price is false, and variation_price is filled : Follow the price of variation products
4.If same_price is false, and variation_price is not filled : variation_price is required
quantity of the product will be ignored once set
e.g. `58c1362f01cda3329300004d`
supported object keys includes include
`seo_description_translations`
keyword separated by comma, max 160 characters
Allow product to be pre-ordered
Preorder Limit (set to -1 if it's unlimited quantity)
`preorder_note_translations`
used for pre-order translation
remind merchant product out of stock
`show_custom_related_products`
Whether Show Custom Related Products
array of product ids merchant suggest that might relate to this product
1.If show_custom_related_products is true and related_product_ids is filled: Filled related products will be displayed to customers.
2.If show_custom_related_products is true and related_product_ids is not filled: No related products will be displayed to customers.
3.If show_custom_related_products is false: Automatically suggested related products will be displayed to customers.
tags are for helping to search products at the admin panel and be used to set up product-related coupon
if you want to add three tags `tag1`,`tag2`,`tag3` please input the following string: `"tag1,tag2,tag3"`|
`blacklisted_delivery_option_ids`
HTTP 200

You just saw the output.

That was one page. A key runs the same call across every URL on shoplineapp.com, with browser rendering, proxies, and concurrency. Sign up and a free balance lands on your account. No card required to test.

  • Free balance on signup, no card
  • Failed requests cost $0
  • robots.txt respected by default

The same call, in code.

The keyless call above returns markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on shoplineapp.com.

shoplineapp-com-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://shoplineapp.com");

// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();

console.log(data);
await spider.close();
ready to run · spider-browser, no selectors

Ready for volume? Get an API key →

Fields you can pull.

Product NamePriceDescriptionImage

Spider names these from the page. The capture above came back as markdown; the same call with return_format: "json" returns them as keys.

What shoplineapp.com costs to scrape.

The capture above cost $0.000615 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.

  • Free balance on signup
  • No card required to test
  • Balance never expires
See the full pricing →

More E-Commerce scrapers.

Start scraping shoplineapp.com.

You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.