{
  "meta": {
    "category": "ecommerce",
    "label": "E-Commerce",
    "icon": "🛍️",
    "color": "#ec4899",
    "count": 26,
    "generated": "2026-03-30T23:25:37.785Z",
    "source": "https://apimap.dev"
  },
  "apis": [
    {
      "id": "shopify",
      "name": "Shopify Admin API",
      "provider": "Shopify",
      "category": "ecommerce",
      "description": "Manage products, orders, customers, inventory, and fulfillment for Shopify stores via REST or GraphQL.",
      "longDescription": "The Shopify Admin API is the primary interface for building Shopify apps and automations. Manage the full product catalog (variants, metafields, collections), process and fulfill orders, sync customer records, update inventory across locations, configure discount codes, and set up webhook subscriptions for real-time event streaming. Available as both REST and GraphQL. Essential for headless commerce and merchant tool development.",
      "color": "#96bf48",
      "tags": [
        "ecommerce",
        "products",
        "orders",
        "inventory",
        "customers",
        "checkout",
        "headless"
      ],
      "authType": "api-key",
      "authDescription": "Use an Admin API access token from your Shopify app or private app credentials. Pass it in the X-Shopify-Access-Token header.",
      "authExample": "X-Shopify-Access-Token: shpat_...",
      "baseUrl": "https://{shop}.myshopify.com/admin/api/2026-01",
      "docsUrl": "https://shopify.dev/docs/api/admin-rest",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": 2900,
        "freeQuota": null,
        "tiers": [
          {
            "name": "Basic",
            "monthlyCents": 2900,
            "included": "2 staff accounts, basic reports"
          },
          {
            "name": "Shopify",
            "monthlyCents": 7900,
            "included": "5 staff accounts, standard reports"
          },
          {
            "name": "Advanced",
            "monthlyCents": 29900,
            "included": "15 staff accounts, custom reports"
          },
          {
            "name": "Plus",
            "monthlyCents": 230000,
            "included": "High-volume, automation, expansions"
          }
        ],
        "details": "Basic: $29/mo. Shopify: $79/mo. Advanced: $299/mo. Plus: $2,300/mo. API access included in all paid plans. Apps via Partner Program."
      },
      "rateLimit": "2 requests/sec (REST) · 1,000 points/sec (GraphQL)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/products.json",
          "description": "List all products in the store"
        },
        {
          "method": "POST",
          "path": "/products.json",
          "description": "Create a new product with variants"
        },
        {
          "method": "GET",
          "path": "/orders.json",
          "description": "List orders with filtering by status/date"
        },
        {
          "method": "POST",
          "path": "/orders/{id}/fulfillments.json",
          "description": "Fulfill an order with tracking info"
        },
        {
          "method": "GET",
          "path": "/customers.json",
          "description": "List customers with search and filters"
        },
        {
          "method": "GET",
          "path": "/inventory_levels.json",
          "description": "Get inventory levels across locations"
        }
      ],
      "sampleRequest": "curl \"https://mystore.myshopify.com/admin/api/2025-01/products.json?limit=3&status=active\" \\\n  -H \"X-Shopify-Access-Token: $SHOPIFY_TOKEN\"",
      "sampleResponse": "{\n  \"products\": [{\n    \"id\": 7891234567,\n    \"title\": \"Classic T-Shirt\",\n    \"status\": \"active\",\n    \"variants\": [{\n      \"id\": 41234567890,\n      \"price\": \"29.99\",\n      \"inventory_quantity\": 150,\n      \"sku\": \"TSHIRT-BLK-M\"\n    }],\n    \"created_at\": \"2024-01-15T10:00:00-05:00\"\n  }]\n}",
      "scoreDepth": 86,
      "scoreLatency": 0,
      "scorePricing": 33,
      "score": 44,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:17:51.542Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "woocommerce",
      "name": "WooCommerce REST API",
      "provider": "Automattic",
      "category": "ecommerce",
      "description": "Manage WooCommerce products, orders, customers, and coupons via authenticated REST endpoints.",
      "longDescription": "The WooCommerce REST API lets you read and write data from any WordPress/WooCommerce store. Create and update products, process orders and refunds, manage customer accounts, apply coupons, configure shipping zones and tax rates, and pull sales reports. Supports both OAuth 1.0a and API key authentication. Ideal for building custom integrations, ERP sync, and headless WooCommerce storefronts.",
      "color": "#7f54b3",
      "tags": [
        "wordpress",
        "ecommerce",
        "products",
        "orders",
        "self-hosted",
        "open-source"
      ],
      "authType": "basic",
      "authDescription": "Generate Consumer Key and Consumer Secret in WooCommerce Settings → Advanced → REST API. Use HTTP Basic Auth (key:secret, base64-encoded) or pass as query parameters.",
      "authExample": "Authorization: Basic base64(ck_...:cs_...)",
      "baseUrl": "https://{your-domain}/wp-json/wc/v3",
      "docsUrl": "https://woocommerce.github.io/woocommerce-rest-api-docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "free",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "forever",
          "note": "Free open-source plugin (hosting cost separate)"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "Open-source plugin, unlimited products"
          },
          {
            "name": "Add-ons",
            "monthlyCents": null,
            "included": "Paid extensions available separately"
          }
        ],
        "details": "WooCommerce is free and open-source. Add-ons are priced separately (e.g., WooCommerce Payments: 2.9% + $0.30/transaction). Hosting from $5/mo."
      },
      "rateLimit": "Depends on your hosting (typically no built-in API limit)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/products",
          "description": "List products with filtering and pagination"
        },
        {
          "method": "POST",
          "path": "/products",
          "description": "Create a new product with attributes"
        },
        {
          "method": "GET",
          "path": "/orders",
          "description": "List orders by status, date, or customer"
        },
        {
          "method": "PUT",
          "path": "/orders/{id}",
          "description": "Update order status or add notes"
        },
        {
          "method": "GET",
          "path": "/customers",
          "description": "List customers with billing/shipping info"
        },
        {
          "method": "GET",
          "path": "/reports/sales",
          "description": "Get sales totals for a date range"
        }
      ],
      "sampleRequest": "curl \"https://mystore.com/wp-json/wc/v3/products?status=publish&per_page=5\" \\\n  -u \"$WC_CONSUMER_KEY:$WC_CONSUMER_SECRET\"",
      "sampleResponse": "{\n  \"id\": 93,\n  \"name\": \"Premium Quality\",\n  \"status\": \"publish\",\n  \"price\": \"21.99\",\n  \"stock_quantity\": 85,\n  \"categories\": [{\"id\": 9, \"name\": \"Clothing\"}],\n  \"images\": [{\"src\": \"https://mystore.com/wp-content/uploads/product.jpg\"}]\n}",
      "scoreDepth": 81,
      "scoreLatency": 0,
      "scorePricing": 100,
      "score": 62,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:17:51.543Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "etsy",
      "name": "Etsy Open API",
      "provider": "Etsy",
      "category": "ecommerce",
      "description": "Search Etsy listings, manage shops, handle orders, and process transactions for sellers and buyers.",
      "longDescription": "The Etsy Open API v3 provides access to the Etsy marketplace. Search active listings across millions of handmade and vintage products, retrieve shop information and seller profiles, manage shop listings (CRUD), handle order receipts and transactions, upload listing images, and access shipping profiles. Uses OAuth 2.0 for seller-scoped operations and an API key for public data.",
      "color": "#f56400",
      "tags": [
        "marketplace",
        "handmade",
        "vintage",
        "listings",
        "sellers",
        "transactions"
      ],
      "authType": "oauth2",
      "authDescription": "Use OAuth 2.0 (PKCE) for seller-scoped endpoints. Pass your API key in the x-api-key header for public read operations.",
      "authExample": "x-api-key: YOUR_KEYSTRING\nAuthorization: Bearer OAUTH_TOKEN (for write ops)",
      "baseUrl": "https://openapi.etsy.com/v3",
      "docsUrl": "https://developers.etsy.com/documentation",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Unlimited API calls; Etsy charges sellers listing/transaction fees"
        },
        "tiers": [],
        "details": "API access is free. Etsy charges sellers: $0.20 listing fee per item, 6.5% transaction fee on sales. No developer API subscription fee."
      },
      "rateLimit": "10,000 requests/day per app",
      "endpoints": [
        {
          "method": "GET",
          "path": "/application/listings/active",
          "description": "Search active listings across the marketplace"
        },
        {
          "method": "GET",
          "path": "/application/shops/{shop_id}",
          "description": "Get shop details and seller info"
        },
        {
          "method": "GET",
          "path": "/application/shops/{shop_id}/listings",
          "description": "List all listings in a specific shop"
        },
        {
          "method": "POST",
          "path": "/application/shops/{shop_id}/listings",
          "description": "Create a new listing in your shop"
        },
        {
          "method": "GET",
          "path": "/application/shops/{shop_id}/receipts",
          "description": "List orders (receipts) for a shop"
        },
        {
          "method": "GET",
          "path": "/application/listings/{listing_id}",
          "description": "Get details for a specific listing"
        }
      ],
      "sampleRequest": "curl \"https://openapi.etsy.com/v3/application/listings/active?keywords=handmade+ceramic+mug&limit=3\" \\\n  -H \"x-api-key: $ETSY_API_KEY\"",
      "sampleResponse": "{\n  \"count\": 4821,\n  \"results\": [{\n    \"listing_id\": 1234567890,\n    \"title\": \"Handmade Ceramic Mug - Speckled Blue\",\n    \"price\": {\"amount\": 3500, \"divisor\": 100, \"currency_code\": \"USD\"},\n    \"quantity\": 12,\n    \"shop_id\": 9876543,\n    \"url\": \"https://www.etsy.com/listing/1234567890\"\n  }]\n}",
      "scoreDepth": 81,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 65,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:53.245Z",
      "verifiedStatus": 404,
      "latencyMs": 2140
    },
    {
      "id": "ebay",
      "name": "eBay Browse API",
      "provider": "eBay",
      "category": "ecommerce",
      "description": "Search eBay's 1.5+ billion live listings, retrieve item details, and check shipping options.",
      "longDescription": "The eBay Browse API gives access to eBay's massive marketplace of 1.5+ billion active listings. Search items using keywords, category IDs, and faceted filters (price, condition, seller, location). Retrieve detailed item data including images, seller ratings, shipping options, return policies, and item specifics. Ideal for price comparison engines, deal aggregators, and shopping tools.",
      "color": "#e53238",
      "tags": [
        "marketplace",
        "auctions",
        "search",
        "products",
        "deals",
        "price-comparison"
      ],
      "authType": "oauth2",
      "authDescription": "eBay uses OAuth 2.0 Client Credentials flow for application-level access. Request an access token from the eBay IAM endpoint, then pass it as a Bearer token.",
      "authExample": "Authorization: Bearer v^1.1#...",
      "baseUrl": "https://api.ebay.com/buy/browse/v1",
      "docsUrl": "https://developer.ebay.com/api-docs/buy/browse/overview.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "5,000 calls/day (sandbox + production)"
        },
        "tiers": [],
        "details": "API access is free for approved developers. eBay charges sellers insertion and final value fees. Higher API call limits may be requested for high-volume apps."
      },
      "rateLimit": "5,000 calls/day (default)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/item_summary/search",
          "description": "Search items with keyword, filters, and facets"
        },
        {
          "method": "GET",
          "path": "/item/{itemId}",
          "description": "Get full item details including images and seller info"
        },
        {
          "method": "GET",
          "path": "/item/get_items_by_item_group",
          "description": "Get all variations of a multi-variant item"
        },
        {
          "method": "GET",
          "path": "/item_summary/search?category_ids={id}",
          "description": "Browse items in a specific eBay category"
        }
      ],
      "sampleRequest": "# First get an OAuth token, then:\ncurl \"https://api.ebay.com/buy/browse/v1/item_summary/search?q=vintage+camera&limit=3&filter=condition%3AUSED\" \\\n  -H \"Authorization: Bearer $EBAY_ACCESS_TOKEN\" \\\n  -H \"X-EBAY-C-MARKETPLACE-ID: EBAY_US\"",
      "sampleResponse": "{\n  \"total\": 48231,\n  \"itemSummaries\": [{\n    \"itemId\": \"v1|382847362890|0\",\n    \"title\": \"Vintage Canon AE-1 35mm Film Camera\",\n    \"price\": {\"value\": \"149.99\", \"currency\": \"USD\"},\n    \"condition\": \"Used\",\n    \"seller\": {\"username\": \"vintagecams_sf\", \"feedbackScore\": 4219},\n    \"shippingOptions\": [{\"shippingCost\": {\"value\": \"0.00\"}}]\n  }]\n}",
      "scoreDepth": 75,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 68,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:51.910Z",
      "verifiedStatus": 404,
      "latencyMs": 736
    },
    {
      "id": "bigcommerce",
      "name": "BigCommerce API",
      "provider": "BigCommerce",
      "category": "ecommerce",
      "description": "Build on BigCommerce stores — manage products, orders, customers, carts, and checkout flows.",
      "longDescription": "The BigCommerce REST and GraphQL APIs provide full access to store data. Manage the product catalog with variants, options, and custom fields; process orders and create shipments with tracking; manage customer accounts and groups; build custom checkout experiences via the Checkout SDK; retrieve analytics and sales reports; and configure webhooks for real-time event streaming. Used by agencies, SaaS apps, and headless commerce implementations.",
      "color": "#34313f",
      "tags": [
        "ecommerce",
        "headless",
        "products",
        "orders",
        "checkout",
        "storefront",
        "b2b"
      ],
      "authType": "api-key",
      "authDescription": "Create an API account in BigCommerce Admin → Advanced Settings → API Accounts. Pass the access token in the X-Auth-Token header.",
      "authExample": "X-Auth-Token: YOUR_ACCESS_TOKEN",
      "baseUrl": "https://api.bigcommerce.com/stores/{storeHash}/v3",
      "docsUrl": "https://developer.bigcommerce.com/docs/rest-management",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": 3900,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "15-day free trial"
        },
        "tiers": [],
        "details": "Standard $39/mo: unlimited products, 3 storefronts. Plus $105/mo: 5 storefronts, customer groups. Pro $399/mo: 8 storefronts, product filtering. Enterprise: custom, unlimited storefronts."
      },
      "rateLimit": "150 requests/30 sec (v3) · 20,000 requests/hour",
      "endpoints": [
        {
          "method": "GET",
          "path": "/catalog/products",
          "description": "List products with filtering by category, price, etc."
        },
        {
          "method": "POST",
          "path": "/catalog/products",
          "description": "Create a new product with variants and images"
        },
        {
          "method": "GET",
          "path": "/orders",
          "description": "List orders with status, date, and customer filters"
        },
        {
          "method": "GET",
          "path": "/customers",
          "description": "List customers with group and email filtering"
        },
        {
          "method": "POST",
          "path": "/checkouts",
          "description": "Create a checkout session for headless commerce"
        },
        {
          "method": "GET",
          "path": "/catalog/categories/tree",
          "description": "Get full category tree for navigation"
        }
      ],
      "sampleRequest": "curl \"https://api.bigcommerce.com/stores/$STORE_HASH/v3/catalog/products?availability=available&limit=5\" \\\n  -H \"X-Auth-Token: $BC_ACCESS_TOKEN\" \\\n  -H \"Accept: application/json\"",
      "sampleResponse": "{\n  \"data\": [{\n    \"id\": 111,\n    \"name\": \"Premium Widget\",\n    \"type\": \"physical\",\n    \"price\": 29.99,\n    \"availability\": \"available\",\n    \"inventory_level\": 150,\n    \"categories\": [18, 24]\n  }],\n  \"meta\": { \"pagination\": { \"total\": 243, \"count\": 5 } }\n}",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 33,
      "score": 56,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:54.006Z",
      "verifiedStatus": 404,
      "latencyMs": 917
    },
    {
      "id": "amazon-sp-api",
      "name": "Amazon SP-API",
      "provider": "Amazon",
      "category": "ecommerce",
      "description": "Manage Amazon seller inventory, orders, pricing, advertising, and fulfillment programmatically.",
      "longDescription": "The Amazon Selling Partner API (SP-API) is the successor to MWS and provides REST-based access to Amazon marketplace data. Manage product listings and inventory, process and ship orders, retrieve financial reports and settlements, automate pricing, access advertising campaign data, and integrate with Fulfillment by Amazon (FBA). Used by large-scale sellers, third-party sellers, repricing tools, and ERP integrations. Requires Amazon seller account and approved SP-API application.",
      "color": "#ff9900",
      "tags": [
        "amazon",
        "marketplace",
        "listings",
        "fba",
        "orders",
        "advertising",
        "repricing",
        "seller"
      ],
      "authType": "oauth2",
      "authDescription": "SP-API uses LWA (Login with Amazon) OAuth 2.0. Exchange your client credentials for an access token, then sign each request with AWS SigV4 using your IAM role credentials.",
      "authExample": "Authorization: Bearer ACCESS_TOKEN\nx-amz-access-token: ACCESS_TOKEN",
      "baseUrl": "https://sellingpartnerapi-na.amazon.com",
      "docsUrl": "https://developer-docs.amazon.com/sp-api",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Sandbox environment is free for development"
        },
        "tiers": [],
        "details": "Most SP-API endpoints are free for approved sellers. Some advanced analytics APIs have usage-based fees. Amazon charges sellers separately for marketplace fees (referral fees, FBA fees, etc.)."
      },
      "rateLimit": "Varies by endpoint (e.g., Orders: 0.0167 req/sec, Listings: 5 req/sec)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/orders/v0/orders",
          "description": "List orders filtered by status, date, and marketplace"
        },
        {
          "method": "GET",
          "path": "/listings/2021-08-01/items/{sellerId}/{sku}",
          "description": "Get a listing by seller SKU"
        },
        {
          "method": "GET",
          "path": "/fba/inventory/v1/summaries",
          "description": "Get FBA inventory levels and conditions"
        },
        {
          "method": "GET",
          "path": "/finances/v0/financialEvents",
          "description": "List financial events (settlements, charges)"
        },
        {
          "method": "GET",
          "path": "/catalog/2022-04-01/items/{asin}",
          "description": "Get product details and search keywords for an ASIN"
        },
        {
          "method": "PUT",
          "path": "/pricing/v0/price",
          "description": "Update listing prices for competitive repricing"
        }
      ],
      "sampleRequest": "# SP-API requires AWS SigV4 signing — shown with simplified headers\ncurl \"https://sellingpartnerapi-na.amazon.com/orders/v0/orders?MarketplaceIds=ATVPDKIKX0DER&OrderStatuses=Unshipped\" \\\n  -H \"x-amz-access-token: $SP_API_ACCESS_TOKEN\" \\\n  -H \"x-amz-date: 20240315T100000Z\"",
      "sampleResponse": "{\n  \"payload\": {\n    \"Orders\": [{\n      \"AmazonOrderId\": \"114-1234567-1234567\",\n      \"OrderStatus\": \"Unshipped\",\n      \"PurchaseDate\": \"2024-03-15T08:00:00Z\",\n      \"OrderTotal\": { \"Amount\": \"49.99\", \"CurrencyCode\": \"USD\" },\n      \"NumberOfItemsShipped\": 0,\n      \"NumberOfItemsUnshipped\": 2\n    }]\n  }\n}",
      "scoreDepth": 86,
      "scoreLatency": 30,
      "scorePricing": 60,
      "score": 61,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:54.340Z",
      "verifiedStatus": 500,
      "latencyMs": 1018
    },
    {
      "id": "api2pdf-pdf-generation-powered-by-aws-la",
      "name": "Api2Pdf - PDF Generation, Powered by AWS Lambda",
      "provider": "Api2Pdf - PDF Generation, Powered by AWS Lambda",
      "category": "ecommerce",
      "description": "Introduction\nApi2Pdf is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. Supports wkhtm",
      "longDescription": "Introduction\nApi2Pdf is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. Supports wkhtm",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "api2pdf"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Authorization)",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "https://v2018.api2pdf.com",
      "docsUrl": "https://v2018.api2pdf.com",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go PDF generation. $0.001/PDF. No monthly fees."
      },
      "rateLimit": "100 req/min",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chrome/html",
          "description": "Convert raw HTML to PDF"
        },
        {
          "method": "GET",
          "path": "/chrome/url",
          "description": "Convert URL to PDF"
        },
        {
          "method": "POST",
          "path": "/chrome/url",
          "description": "Convert URL to PDF"
        },
        {
          "method": "POST",
          "path": "/libreoffice/convert",
          "description": "Convert office document or image to PDF"
        },
        {
          "method": "POST",
          "path": "/merge",
          "description": "Merge multiple PDFs together"
        },
        {
          "method": "POST",
          "path": "/wkhtmltopdf/html",
          "description": "Convert raw HTML to PDF"
        },
        {
          "method": "GET",
          "path": "/wkhtmltopdf/url",
          "description": "Convert URL to PDF"
        },
        {
          "method": "POST",
          "path": "/wkhtmltopdf/url",
          "description": "Convert URL to PDF"
        }
      ],
      "sampleRequest": "curl -X GET 'https://v2018.api2pdf.com/chrome/html' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:55.950Z",
      "verifiedStatus": 200,
      "latencyMs": 1760
    },
    {
      "id": "axesso",
      "name": "Axesso Api",
      "provider": "Axesso",
      "category": "ecommerce",
      "description": "Use this api to fetch information to Amazon products and more.",
      "longDescription": "Use this api to fetch information to Amazon products and more.",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "axesso"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://api.axesso.de",
      "docsUrl": "http://api.axesso.de",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/amz/amazon-lookup-buy-recommendations",
          "description": "request buy recommendations to a given product"
        },
        {
          "method": "GET",
          "path": "/amz/amazon-lookup-product",
          "description": "lookup product information"
        },
        {
          "method": "GET",
          "path": "/amz/amazon-search-by-keyword",
          "description": "fetch results auf a keyword search on Amazon"
        },
        {
          "method": "GET",
          "path": "/amz/sort-options",
          "description": "request available sort options to use in keyword search"
        }
      ],
      "sampleRequest": "curl -X GET 'http://api.axesso.de/amz/amazon-lookup-buy-recommendations' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 47,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:56.476Z",
      "verifiedStatus": 404,
      "latencyMs": 1979
    },
    {
      "id": "dropx",
      "name": "DropX",
      "provider": "DropX",
      "category": "ecommerce",
      "description": "dropX.io API provides programmatic access to the e-commerce intelligence data.",
      "longDescription": "dropX.io API provides programmatic access to the e-commerce intelligence data.",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "dropx"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (access_token)",
      "authExample": "access_token: YOUR_API_KEY",
      "baseUrl": "http://dropx.io/api/v1",
      "docsUrl": "http://dropx.io/api/v1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Dropshipping intelligence API. Free trial. Standard $49/mo. Professional $149/mo. Enterprise custom. Provides supplier and product data for dropshippers."
      },
      "rateLimit": "60 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/products/",
          "description": "Get product details by providing the product IDs"
        },
        {
          "method": "GET",
          "path": "/products/link-search",
          "description": "Search for similar products by providing a link to any e-commerce product."
        },
        {
          "method": "GET",
          "path": "/products/link-search-v2",
          "description": "Search for similar products by providing a link to any e-commerce product."
        },
        {
          "method": "GET",
          "path": "/products/search",
          "description": "Search for any product using title"
        },
        {
          "method": "GET",
          "path": "/products/search-v2",
          "description": "Search for any product using title"
        },
        {
          "method": "GET",
          "path": "/products/title-search",
          "description": "Search for any product using title"
        },
        {
          "method": "GET",
          "path": "/users/usage",
          "description": "Get API usuage details"
        }
      ],
      "sampleRequest": "curl -X GET 'http://dropx.io/api/v1/products/' \\\n  -H 'access_token: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 61,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:02.945Z",
      "verifiedStatus": 200,
      "latencyMs": 5473
    },
    {
      "id": "aws-migration-hub",
      "name": "AWS Migration Hub",
      "provider": "AWS Migration Hub",
      "category": "ecommerce",
      "description": "<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these AP",
      "longDescription": "<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these AP",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "amazonaws"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Authorization)",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "http://mgh.{region}.amazonaws.com",
      "docsUrl": "https://github.com/mermade/aws2openapi",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free. AWS Migration Hub has no additional charges; you pay for underlying services used."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.AssociateCreatedArtifact",
          "description": "<p>Associates a created artifact of an AWS cloud resource, the target receiving "
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.AssociateDiscoveredResource",
          "description": "Associates a discovered resource ID from Application Discovery Service with a mi"
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.CreateProgressUpdateStream",
          "description": "Creates a progress update stream which is an AWS resource used for access contro"
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.DeleteProgressUpdateStream",
          "description": "<p>Deletes a progress update stream, including all of its tasks, which was previ"
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.DescribeApplicationState",
          "description": "Gets the migration status of an application."
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.DescribeMigrationTask",
          "description": "Retrieves a list of all attributes associated with a specific migration task."
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.DisassociateCreatedArtifact",
          "description": "<p>Disassociates a created artifact of an AWS resource with a migration task per"
        },
        {
          "method": "POST",
          "path": "/#X-Amz-Target=AWSMigrationHub.DisassociateDiscoveredResource",
          "description": "Disassociate an Application Discovery Service discovered resource from a migrati"
        }
      ],
      "sampleRequest": "curl -X GET 'http://mgh.{region}.amazonaws.com/#X-Amz-Target=AWSMigrationHub.AssociateCreatedArtifact' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:26.421Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "account",
      "name": "Account API",
      "provider": "Account",
      "category": "ecommerce",
      "description": "The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (eBay business policies and seller-defined custom policies), opt in and out of eBay seller programs, configure sales tax tables, and get account information.  <br/><br/>For detai",
      "longDescription": "The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (eBay business policies and seller-defined custom policies), opt in and out of eBay seller programs, configure sales tax tables, and get account information.  <br/><br/>For detai",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "api"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 — obtain an access token via the authorization flow",
      "authExample": "Authorization: Bearer <access_token>",
      "baseUrl": "https://api.ebay.com{basePath}",
      "docsUrl": "https://api.ebay.com{basePath}",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Free tier available; pricing depends on account type and usage."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/advertising_eligibility",
          "description": "This method allows developers to check the seller eligibility status for eBay ad"
        },
        {
          "method": "GET",
          "path": "/custom_policy/",
          "description": "This method retrieves the list of custom policies specified by the <b>policy_typ"
        },
        {
          "method": "POST",
          "path": "/custom_policy/",
          "description": "This method creates a new custom policy in which a seller specifies their terms "
        },
        {
          "method": "GET",
          "path": "/custom_policy/{custom_policy_id}",
          "description": "This method retrieves the custom policy specified by the <b>custom_policy_id</b>"
        },
        {
          "method": "PUT",
          "path": "/custom_policy/{custom_policy_id}",
          "description": "This method updates an existing custom policy specified by the <b>custom_policy_"
        },
        {
          "method": "GET",
          "path": "/fulfillment_policy",
          "description": "This method retrieves all the fulfillment policies configured for the marketplac"
        },
        {
          "method": "POST",
          "path": "/fulfillment_policy/",
          "description": "This method creates a new fulfillment policy where the policy encapsulates selle"
        },
        {
          "method": "GET",
          "path": "/fulfillment_policy/get_by_policy_name",
          "description": "This method retrieves the details for a specific fulfillment policy. In the requ"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.ebay.com{basePath}/advertising_eligibility' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:26.429Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "ecommerce",
      "name": "Ecommerce API",
      "provider": "Ecommerce",
      "category": "ecommerce",
      "description": "Welcome to the Ecommerce API.\n\nYou can use this API to access all Ecommerce API endpoints.\n\nBase URL\n\nThe base URL for all API requests is https://unify.apideck.com\n\nWe also provide a Mock API that can be used for testing purposes: `https://mock-api.ap",
      "longDescription": "Welcome to the Ecommerce API.\n\nYou can use this API to access all Ecommerce API endpoints.\n\nBase URL\n\nThe base URL for all API requests is https://unify.apideck.com\n\nWe also provide a Mock API that can be used for testing purposes: `https://mock-api.ap",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "apideck"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Authorization)",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "https://unify.apideck.com",
      "docsUrl": "https://developers.apideck.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Pricing varies by platform; free tiers typically available."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/ecommerce/customers",
          "description": "List Customers"
        },
        {
          "method": "GET",
          "path": "/ecommerce/customers/{id}",
          "description": "Get Customer"
        },
        {
          "method": "GET",
          "path": "/ecommerce/orders",
          "description": "List Orders"
        },
        {
          "method": "GET",
          "path": "/ecommerce/orders/{id}",
          "description": "Get Order"
        },
        {
          "method": "GET",
          "path": "/ecommerce/products",
          "description": "List Products"
        },
        {
          "method": "GET",
          "path": "/ecommerce/products/{id}",
          "description": "Get Product"
        },
        {
          "method": "GET",
          "path": "/ecommerce/store",
          "description": "Get Store"
        }
      ],
      "sampleRequest": "curl -X GET 'https://unify.apideck.com/ecommerce/customers' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:28.774Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "identity",
      "name": "Identity API",
      "provider": "Identity",
      "category": "ecommerce",
      "description": "<span class=\"tablenote\"><b>Note:</b> Not all the account related fields are returned for an authenticated user. The fields returned in the response are controlled by the scopes and are available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user'",
      "longDescription": "<span class=\"tablenote\"><b>Note:</b> Not all the account related fields are returned for an authenticated user. The fields returned in the response are controlled by the scopes and are available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user'",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "apiz"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 — obtain an access token via the authorization flow",
      "authExample": "Authorization: Bearer <access_token>",
      "baseUrl": "https://apiz.ebay.com{basePath}",
      "docsUrl": "https://apiz.ebay.com{basePath}",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Identity service pricing varies by provider; many offer free tiers."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/user/",
          "description": "This method retrieves the account profile information for an authenticated user,"
        }
      ],
      "sampleRequest": "curl -X GET 'https://apiz.ebay.com{basePath}/user/' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 35,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 22,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:29.253Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "inventory-management",
      "name": "Inventory Management",
      "provider": "Inventory Management",
      "category": "ecommerce",
      "description": "Maintaining up-to-date inventory for your items on Walmart.com ensures a great experience for your customers and greater sales opportunities for you.",
      "longDescription": "Maintaining up-to-date inventory for your items on Walmart.com ensures a great experience for your customers and greater sales opportunities for you.",
      "color": "#a855f7",
      "tags": [
        "ecommerce",
        "walmart"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://marketplace.walmartapis.com",
      "docsUrl": "https://marketplace.walmartapis.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/v3/feeds",
          "description": "Bulk Item Inventory Update"
        },
        {
          "method": "GET",
          "path": "/v3/fulfillment/inventory",
          "description": "WFS Inventory"
        },
        {
          "method": "GET",
          "path": "/v3/inventories",
          "description": "Multiple Item Inventory for All Ship Nodes"
        },
        {
          "method": "GET",
          "path": "/v3/inventories/{sku}",
          "description": "Single Item Inventory by Ship Node"
        },
        {
          "method": "PUT",
          "path": "/v3/inventories/{sku}",
          "description": "Update Item Inventory per Ship Node"
        },
        {
          "method": "GET",
          "path": "/v3/inventory",
          "description": "Inventory"
        },
        {
          "method": "PUT",
          "path": "/v3/inventory",
          "description": "Update inventory"
        }
      ],
      "sampleRequest": "curl -X GET 'https://marketplace.walmartapis.com/v3/feeds' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 65,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:46.388Z",
      "verifiedStatus": 404,
      "latencyMs": 6471
    },
    {
      "id": "best-buy",
      "name": "Best Buy API",
      "provider": "Best Buy",
      "category": "ecommerce",
      "description": "Products, Buying Options, Categories, Recommendations, Stores and Commerce",
      "longDescription": "Products, Buying Options, Categories, Recommendations, Stores and Commerce",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://bestbuyapis.github.io",
      "docsUrl": "https://bestbuyapis.github.io/api-documentation/#overview",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — Best Buy developer API requires a free API key. Access to product catalog, store availability, pricing. No paid tiers published."
      },
      "rateLimit": "5 req/s (default)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://bestbuyapis.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:33.263Z",
      "verifiedStatus": 200,
      "latencyMs": 617
    },
    {
      "id": "digi-key",
      "name": "Digi-Key API",
      "provider": "Digi-Key",
      "category": "ecommerce",
      "description": "Retrieve price and inventory of electronic components as well as place orders",
      "longDescription": "Retrieve price and inventory of electronic components as well as place orders",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.digikey.com",
      "docsUrl": "https://www.digikey.com/en/resources/api-solutions",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with DigiKey developer account. Electronic component catalog and pricing API."
      },
      "rateLimit": "1,000 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.digikey.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 27,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:33.362Z",
      "verifiedStatus": 403,
      "latencyMs": 663
    },
    {
      "id": "flipkart-marketplace",
      "name": "Flipkart Marketplace API",
      "provider": "Flipkart Marketplace",
      "category": "ecommerce",
      "description": "Product listing management, Order Fulfilment in the Flipkart Marketplace",
      "longDescription": "Product listing management, Order Fulfilment in the Flipkart Marketplace",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://seller.flipkart.com",
      "docsUrl": "https://seller.flipkart.com/api-docs/FMSAPI.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — Flipkart Marketplace Seller API for registered sellers. Indian ecommerce marketplace. Requires active Flipkart seller account."
      },
      "rateLimit": "Varies by endpoint",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://seller.flipkart.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:34.391Z",
      "verifiedStatus": 200,
      "latencyMs": 1675
    },
    {
      "id": "lazada",
      "name": "Lazada API",
      "provider": "Lazada",
      "category": "ecommerce",
      "description": "Retrieve product ratings and seller performance metrics",
      "longDescription": "Retrieve product ratings and seller performance metrics",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://open.lazada.com",
      "docsUrl": "https://open.lazada.com/doc/doc.htm",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — Lazada Open Platform API for partners and developers. HMAC-SHA256 auth. Southeast Asian marketplace (owned by Alibaba). Seller and logistics APIs."
      },
      "rateLimit": "100K req/day (default)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://open.lazada.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:35.381Z",
      "verifiedStatus": 200,
      "latencyMs": 2663
    },
    {
      "id": "mercadolibre",
      "name": "Mercadolibre API",
      "provider": "Mercadolibre",
      "category": "ecommerce",
      "description": "Manage sales, ads, products, services and Shops",
      "longDescription": "Manage sales, ads, products, services and Shops",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developers.mercadolibre.cl",
      "docsUrl": "https://developers.mercadolibre.cl/es_ar/api-docs-es",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — MercadoLibre API is free for approved developers (Latin American marketplace). OAuth 2.0 required. Access to listings, orders, catalog, payments."
      },
      "rateLimit": "Varies by app category; authenticated required",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developers.mercadolibre.cl'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:33.829Z",
      "verifiedStatus": 200,
      "latencyMs": 1016
    },
    {
      "id": "octopart",
      "name": "Octopart API",
      "provider": "Octopart",
      "category": "ecommerce",
      "description": "Electronic part data for manufacturing, design, and sourcing",
      "longDescription": "Electronic part data for manufacturing, design, and sourcing",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://octopart.com",
      "docsUrl": "https://octopart.com/api/v4/reference",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Electronic component search API. Free: 1,000 queries/month. Business $499/mo (100K queries). Enterprise custom. Owned by Altium. Rich BOM data."
      },
      "rateLimit": "1K queries/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://octopart.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:34.155Z",
      "verifiedStatus": 403,
      "latencyMs": 1249
    },
    {
      "id": "olx-poland",
      "name": "OLX Poland API",
      "provider": "OLX Poland",
      "category": "ecommerce",
      "description": "Integrate with local sites by posting, managing adverts and communicating with OLX users",
      "longDescription": "Integrate with local sites by posting, managing adverts and communicating with OLX users",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.olx.pl",
      "docsUrl": "https://developer.olx.pl/api/doc#section/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — OLX Poland classifieds marketplace API for partners. Requires partner agreement. Poland-focused classifieds and automotive marketplace."
      },
      "rateLimit": "Varies by partner agreement",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.olx.pl'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:36.699Z",
      "verifiedStatus": 200,
      "latencyMs": 3774
    },
    {
      "id": "shopee",
      "name": "Shopee API",
      "provider": "Shopee",
      "category": "ecommerce",
      "description": "Shopee's official API for integration of various services from Shopee",
      "longDescription": "Shopee's official API for integration of various services from Shopee",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://open.shopee.com",
      "docsUrl": "https://open.shopee.com/documents?version=1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — Shopee Open Platform API for sellers and developers. OAuth 2.0. Southeast Asian ecommerce marketplace (Lazada competitor). Partner approval required."
      },
      "rateLimit": "20 req/s (default app)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://open.shopee.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:35.323Z",
      "verifiedStatus": 200,
      "latencyMs": 2394
    },
    {
      "id": "tokopedia",
      "name": "Tokopedia API",
      "provider": "Tokopedia",
      "category": "ecommerce",
      "description": "Tokopedia's Official API for integration of various services from Tokopedia",
      "longDescription": "Tokopedia's Official API for integration of various services from Tokopedia",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.tokopedia.com",
      "docsUrl": "https://developer.tokopedia.com/openapi/guide/#/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — Tokopedia Open API for sellers and developers. Indonesian ecommerce marketplace (part of GoTo Group). Requires seller account or partner approval."
      },
      "rateLimit": "Varies by endpoint",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.tokopedia.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:35.799Z",
      "verifiedStatus": 404,
      "latencyMs": 2774
    },
    {
      "id": "rappi",
      "name": "Rappi API",
      "provider": "Rappi",
      "category": "ecommerce",
      "description": "Integrate with Rappi and enhance your adoption as an ally with the Rappi API Documentation, User Guides, FAQs, and development resources.",
      "longDescription": "Integrate with Rappi and enhance your adoption as an ally with the Rappi API Documentation, User Guides, FAQs, and development resources.",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://dev-portal.rappi.com",
      "docsUrl": "https://dev-portal.rappi.com/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. Rappi Latin American delivery API for merchant partners."
      },
      "rateLimit": "Based on contract",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://dev-portal.rappi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 29,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:06.748Z",
      "verifiedStatus": 200,
      "latencyMs": 2136
    },
    {
      "id": "beezup-merchant",
      "name": "BeezUP Merchant API  API",
      "provider": "BeezUP Merchant API",
      "category": "ecommerce",
      "description": "The REST API of BeezUP system\nOverview\nThe REST APIs provide programmatic access to read and write BeezUP data. \nBasically, with this API you will be able to do everything like you were with your browser on https://go.beezup.com !\n\nThe main features are:\n- Register and manage your account\n- Create and manage and share your stores with your friends/co-workers.\n- Import your product catalog and",
      "longDescription": "The REST API of BeezUP system\nOverview\nThe REST APIs provide programmatic access to read and write BeezUP data. \nBasically, with this API you will be able to do everything like you were with your browser on https://go.beezup.com !\n\nThe main features are:\n- Register and manage your account\n- Create and manage and share your stores with your friends/co-workers.\n- Import your product catalog and",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "API key in the Ocp-Apim-Subscription-Key header",
      "authExample": "Ocp-Apim-Subscription-Key: YOUR_API_KEY",
      "baseUrl": "https://api.beezup.com",
      "docsUrl": "https://api.apis.guru/v2/specs/beezup.com/2.0.json",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. BeezUP product feed management and marketplace API. Pricing from €99/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "POST",
          "path": "/orders/v3/batches/changeOrders",
          "description": "Send a batch of operations to change your marketplace Order information: accept, ship, etc.  (max 100 items per call)"
        },
        {
          "method": "POST",
          "path": "/orders/v3/batches/changeOrders/{changeOrderType}",
          "description": "Send a batch of operations to change your marketplace Order information: accept, ship, etc.  (max 100 items per call)"
        },
        {
          "method": "POST",
          "path": "/orders/v3/batches/clearMerchantOrderInfos",
          "description": "Send a batch of operations to clear an Order's merchant information (max 100 items per call)"
        },
        {
          "method": "POST",
          "path": "/orders/v3/batches/setMerchantOrderInfos",
          "description": "Send a batch of operations to set an Order's merchant information  (max 100 items per call)"
        },
        {
          "method": "POST",
          "path": "/orders/v3/harvest",
          "description": "Send harvest request to all your marketplaces"
        },
        {
          "method": "POST",
          "path": "/orders/v3/list/full",
          "description": "Get a paginated list of all Orders with all Order and Order Item(s) properties"
        },
        {
          "method": "POST",
          "path": "/orders/v3/list/light",
          "description": "Get a paginated list of all Orders without details"
        },
        {
          "method": "GET",
          "path": "/orders/v3/lov/orderManagementReadyMarketplaceBusinessCode",
          "description": "Get the list of MarketplaceBusinessCode ready for Order Management"
        }
      ],
      "sampleRequest": "curl 'https://api.beezup.com/orders/v3/batches/changeOrders' \\\n  -H 'Ocp-Apim-Subscription-Key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:15.115Z",
      "verifiedStatus": 404,
      "latencyMs": 2074
    },
    {
      "id": "canada-post",
      "name": "Canada Post API",
      "provider": "Canada Post",
      "category": "ecommerce",
      "description": "Allows e-commerce solution providers and online merchants to integrate Canada Post services, such as shipping, rating and tracking data, into a platform or website.",
      "longDescription": "Allows e-commerce solution providers and online merchants to integrate Canada Post services, such as shipping, rating and tracking data, into a platform or website.",
      "color": "#a855f7",
      "tags": [
        "ecommerce"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.canadapost.ca",
      "docsUrl": "http://www.canadapost.ca/cpo/mc/business/productsservices/developers/services/fundamentals.jsf",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Canada Post shipping and tracking. Free: developer sandbox access. Production pricing based on postage rates. API key from Canada Post developer program."
      },
      "rateLimit": "100 req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.canadapost.ca'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 30,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:22.201Z",
      "verifiedStatus": 200,
      "latencyMs": 2850
    }
  ]
}