Ecommerce
Blue Ridge Knives logo

Blue Ridge Knives API

store.blueridgeknives.com

Blue Ridge Knives — US wholesale distributor of knives and outdoor gear. Sign in with your dealer account to search the range, look up a product's price, stock, UPC and full specifications, and build or empty your cart. The storefront is open to signed-in dealers only. Nothing is ever checked out — placing the order stays with you.

Actions
9
Category
Ecommerce
Login
Some actions
Output
JSON

Call the Blue Ridge Knives API

Submit a task, then poll the job until it settles. This example runs brk_add_items_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": "brk_add_items_to_cart",
    "credential_id": "<your-credential-id>",
    "params": {
      "items": []
    }
  }'

9 actions on store.blueridgeknives.com

Read

  • Get Product Details

    brk_product_detailsreadlogin required1 credit / call

    Get one product's full detail by SKU, URL, or name — including its UPC and the complete attribute sheet (the product page is the only place the UPC is published). A SKU lookup resolves directly, no search step.

    sku
    string
    url
    string
    name
    string
  • List All Products

    brk_list_all_productsreadlogin required3 credits / call

    List products across the entire Blue Ridge catalog (every category, de-duplicated by SKU). The catalog is very large, so results are bounded by max_products and report `truncated` when capped — raise the cap for a fuller crawl, or use brk_list_products per category for a complete index. Each product carries SKU, name, brand, price and stock; set include_upc to also fetch each product's UPC (slower).

    max_products
    integer
    page_size
    integer
    max_pages_per_category
    integer
    include_upc
    boolean
    only_stock_items
    boolean
    min_price
    number
    max_price
    number
  • List Categories

    brk_categoriesreadlogin required1 credit / call

    List the catalog categories. The store has no single category index, so the tree is assembled from the category navigation. Each category slug is verified by default (an unknown slug doesn't error on this store — it silently falls through to a search or placeholder page), so you only get real, browsable categories.

    verify
    boolean
  • List Products

    brk_list_productsreadlogin required2 credits / call

    List products for one or more categories, auto-paginated. The catalog is large, so results are bounded by max_products and report `truncated` when capped. Each product carries SKU, name, brand, price and stock — but not the UPC; set include_upc to backfill it (slower: one extra request per product), or use brk_product_details for a single SKU.

    category
    string
    categories
    array
    max_products
    integer
    max_pages
    integer
    page_size
    integer
    include_upc
    boolean
    only_stock_items
    boolean
    min_price
    number
    max_price
    number
  • Search Products

    brk_search_productsreadlogin required1 credit / call

    Search the catalog by SKU (exact, case-insensitive) or product name. Note: UPC is not searchable — resolve order lines by SKU. A session is required (the store needs login even to search).

    query
    string · required
    page
    integer
    page_size
    integer
  • View Cart

    brk_get_cartreadlogin required1 credit / call

    Read the customer's cart — line items and totals as clean JSON. Line prices are the account's own customer-group prices. This is the real cart, shared with the customer's browser session.

Write

Write actions change state on store.blueridgeknives.com and run as the account you connect.

  • Add Items to Cart

    brk_add_items_to_cartwritelogin required2 credits / call

    Batch-add a buy order. Each item carries whatever identifiers the order line has (SKU strongly preferred) plus a quantity; every line is resolved to a catalog SKU, set to that absolute quantity, price-checked against the account's own price, and verified against the cart at the end. UPC-only lines come back unresolved (UPC isn't searchable). Max 50 items per call. Never places an order.

    items
    array · required
    clear_first
    boolean
  • Add to Cart

    brk_add_to_cartwritelogin required1 credit / call

    Add or set one cart line by SKU. Quantity is ABSOLUTE — setting a SKU that's already in the cart replaces its quantity (or removes the line at quantity 0), so retries are idempotent. Verifies the line landed by reading the cart back. Writes to the customer's real cart; never places an order.

    sku
    string
    name
    string
    upc
    string
    quantity
    integer
  • Empty Cart

    brk_clear_cartwritelogin required1 credit / call

    Empty the cart — removes every line and reads the cart back to confirm. Destructive: this empties the customer's real cart, shared with their browser session. Requires confirm=true; without it the action returns a dry-run listing and changes nothing.

    confirm
    boolean

Blue Ridge Knives API questions

Is there an API for Blue Ridge Knives?
Blue Ridge Knives does not offer a public data API for this, but Anakin Wire provides 9 maintained endpoints for store.blueridgeknives.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 Blue Ridge Knives 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 store.blueridgeknives.com changes its markup, Anakin updates the action.
Do I need a Blue Ridge Knives account?
Some Blue Ridge Knives 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 Blue Ridge Knives 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