Workspace>Developer

Platform API Access

Access the bilingual search index programmatically using the credentials below.

Endpoint:https://search-api.alfuhod.com/
API Key:api_alfuhod_secret_key_2026

API Explorer / Sandbox

GraphQL Request

query LiveCatalogSearch {
  searchCatalog(
    query: "iPhone", 
    storeCode: "en", 
    page: 1, 
    perPage: 2
  ) {
    total_found
    search_time_ms
    hits {
      sku
      name
      price
      stock_status
    }
  }
}

JSON Response

{
  "data": {
    "searchCatalog": {
      "total_found": 2298,
      "search_time_ms": 4,
      "hits": [
        {
          "sku": "44051",
          "name": "Apple iPhone 17 Pro 256GB",
          "price": 399.00,
          "stock_status": "in_stock"
        }
      ]
    }
  }
}