Search

Ask a question in plain English. Etoile finds the best matches.


import { Etoile } from "@etoile-dev/client";

const etoile = new Etoile({
apiKey: process.env.ETOILE_PUBLIC_KEY,
});

const { results } = await etoile.search({
query: "swirling sky painting",
collections: ["paintings"],
});

Related