Ecommerce
Dumco logo

Dumco API

www.dumcoshop.nl

Dumco B.V. — B2B wholesale webshop (dumcoshop.nl). Login, catalog browse/search/details, cart operations, and account data (orders, invoices, credit notes, backorders, wishlists).

Actions
15
Category
Ecommerce
Login
Some actions
Output
JSON

Call the Dumco API

Submit a task, then poll the job until it settles. This example runs dmc_account.

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": "dmc_account",
    "credential_id": "<your-credential-id>",
    "params": {}
  }'

15 actions on www.dumcoshop.nl

Read

  • Dumco Account Profile

    dmc_accountreadlogin required2 credits / call

    Return the authenticated Dumco account profile: debtor number, company name, contact, email, phone, VAT number, address, and account settings.

  • Dumco Backorders

    dmc_backordersreadlogin required2 credits / call

    List the open order lines / backorders for the Dumco account.

    max_lines
    integer
  • Dumco Categories

    dmc_categoriesreadlogin required2 credits / call

    List the Dumco catalog categories. Each entry includes a `url` and a `listable` flag — pass the url of any listable row to dmc_list_products to list that category's products. Non-listable rows (section landings, tool/page links) are omitted unless include_all is set.

    include_all
    boolean
  • Dumco Credit Invoices

    dmc_credit_invoicesreadlogin required2 credits / call

    List the credit notes (creditnota's) on the Dumco account: numbers, dates, and amounts.

    length
    integer
  • Dumco Draft Orders

    dmc_draft_ordersreadlogin required2 credits / call

    List the saved carts / draft orders on the Dumco account.

  • Dumco Get Shopping Cart

    dmc_get_cartreadlogin required2 credits / call

    Read the current Dumco shopping cart — each line's article, name, quantity and price, plus the cart totals.

  • Dumco List Catalog Products

    dmc_list_productsreadlogin required2 credits / call

    List products from the Dumco catalog with price and stock. Pass category_url (from dmc_categories) to list a single category, or omit it to list the entire catalog. Results paginate automatically up to max_pages

    category_url
    string
    max_pages
    integer
  • Dumco List Invoices

    dmc_invoicesreadlogin required2 credits / call

    List the invoices on the Dumco account: invoice numbers, dates, amounts, and status.

    limit
    integer
  • Dumco Order History

    dmc_ordersreadlogin required2 credits / call

    List the account's Dumco order history: order numbers, dates, statuses, and totals.

    limit
    integer
    offset
    integer
  • Dumco Product Details

    dmc_product_detailsreadlogin required1 credit / call

    Fetch one product's full details by its article (model number or slug): name, price, stock, order steps, min/max quantity, EAN, image, and its purchasable variants. For multi-variant products, returns is_matrix=true and every {color, size} option with its own stock/price/min-order-qty — use the article + a variant's color+size to add it to the cart.

    article
    string · required
  • Dumco Search Products

    dmc_search_productsreadlogin required2 credits / call

    Search the Dumco catalog by SKU, EAN, or product name. Returns matching products with name, price, stock, and article code.

    query
    string · required
    max_results
    integer
  • Dumco Wishlists

    dmc_wishlistsreadlogin required2 credits / call

    List the account's Dumco wishlists: name, id, order type, sales agent, and active status.

Write

Write actions change state on www.dumcoshop.nl and run as the account you connect.

  • Dumco Add Items To Cart (Batch)

    dmc_add_items_to_cartwritelogin required2 credits / call

    Batch add or set many product lines in the Dumco cart in one call (no checkout). Provide a list of items, each with an article and quantity.

    items
    array · required
    default_quantity
    integer
    default_order_steps
    integer
    stop_on_error
    boolean
    verify
    boolean
  • Dumco Add To Cart

    dmc_add_to_cartwritelogin required1 credit / call

    Add or set a single product line in the Dumco cart (no checkout). Provide the product's article and quantity.

    article
    string · required
    quantity
    integer
    order_steps
    integer
    color
    string
    size
    string
  • Dumco Clear Cart

    dmc_clear_cartwritelogin required2 credits / call

    Empty the Dumco shopping cart — remove every line (no checkout).

Dumco API questions

Is there an API for Dumco?
Dumco does not offer a public data API for this, but Anakin Wire provides 15 maintained endpoints for www.dumcoshop.nl. 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 Dumco 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 www.dumcoshop.nl changes its markup, Anakin updates the action.
Do I need a Dumco account?
Some Dumco 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 Dumco 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.

More Ecommerce APIs

All Ecommerce sites