OpenAPI Specification

openapi: 3.0.0info: title: Bijoux-NYC Direct API description: API for browsing fine jewelry and diamonds from NYC's Diamond District version: 1.0.0 contact: email: support@bijouxnycdirect.comservers: - url: https://bijouxnycdirect.com description: Bijoux-NYC Direct Storepaths: /collections/all: get: summary: Browse all jewelry products description: Get a list of all available jewelry products responses: '200': description: List of jewelry products content: text/html: schema: type: string /search: get: summary: Search jewelry products description: Search for specific jewelry items parameters: - name: q in: query description: Search query for jewelry items required: true schema: type: string responses: '200': description: Search results content: text/html: schema: type: string /collections/rings: get: summary: Browse rings collection description: View all available rings responses: '200': description: Ring collection page /collections/necklaces: get: summary: Browse necklaces collection description: View all available necklaces responses: '200': description: Necklace collection page /collections/bracelets: get: summary: Browse bracelets collection description: View all available bracelets responses: '200': description: Bracelet collection page /collections/earrings: get: summary: Browse earrings collection description: View all available earrings responses: '200': description: Earring collection page