Almec API
almec.com
Almec B2B vacuum-cleaner parts shop (NL)
- Actions
- 5
- Category
- B2b Parts
- Login
- Some actions
- Output
- JSON
Call the Almec API
Submit a task, then poll the job until it settles. This example runs act_almec_com_add_to_cart.
curl -X POST https://api.anakin.io/v1/wire/task \
-H "X-API-Key: $ANAKIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"action_id": "act_almec_com_add_to_cart",
"credential_id": "<your-credential-id>",
"params": {
"line_items": "[{\"sku\":\"S0188B\",\"quantity\":2},{\"sku\":\"42114-T\",\"quantity\":1}]"
}
}'5 actions on almec.com
Read
Cart State
act_almec_com_cart_statereadlogin required1 credit / callCurrent Almec cart line items with SKU, quantity and prices.
Product Details
act_almec_com_product_detailsreadlogin required1 credit / callLook up one Almec product by SKU (name, EAN, stock, price).
- product_sku
- string · required
Product List
act_almec_com_product_listreadlogin required5 credits / callFull Almec product catalog with SKU, EAN, stock and B2B price.
- limit
- integer
Product Search
act_almec_com_product_searchreadlogin required1 credit / callSearch Almec products by SKU, EAN, name or free text.
- search_query
- string · required
- limit
- integer
Write
Write actions change state on almec.com and run as the account you connect.
Add to Cart
act_almec_com_add_to_cartwritelogin required1 credit / callAdd a batch of SKU+quantity line items to the Almec cart.
- line_items
- string · required
Almec API questions
- Is there an API for Almec?
- Almec does not offer a public data API for this, but Anakin Wire provides 5 maintained endpoints for almec.com. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
- How do I scrape Almec data?
- POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when almec.com changes its markup, Anakin updates the action.
- Do I need a Almec account?
- Some Almec actions read data that is only visible when signed in, so those need a credential you connect once. Actions marked "read" without a login requirement run anonymously.
- What does the Almec API cost?
- Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.