Brava by BRIUS
Brava (by Brius Technologies) hidden lingual braces are sold only through certified orthodontists — search the site's own find-a-provider locator by zip…
Brava (by Brius Technologies) hidden lingual braces are sold only through certified orthodontists — search the site's own find-a-provider locator by zip code or location and get back real, currently-listed certified practices with address, phone and doctor name.
Domain: bravabraces.com
Also known as: Brava, Brava Braces, BRIUS, Brius Technologies, brius.com, bravabraces.com
Call it directly
bowmark.providers.brius.findProviders(query: string): Promise<BriusProviderSearch>Functions
| Function | What it does |
|---|---|
findProviders | Runs Brava's own find-a-provider locator search for a zip code or location string and returns the certified orthodontist practices it lists — name, doctor, address, phone and website,… |
Types
// Brava's OWN shapes — not a capability contract.
interface BriusProviderListing {
name: string; // e.g. "Embrace Orthodontics"
url: string; // the practice's own listing page on bravabraces.com
doctorName: string | null;
streetAddress: string | null;
city: string | null;
region: string | null;
postalCode: string | null;
country: string | null;
phone: string | null;
website: string | null; // the practice's own external site, when listed
}
interface BriusProviderSearch {
query: string;
providers: BriusProviderListing[];
}Examples
// The goal-flow ChatGPT couldn't complete on its own: find certified Brava providers near a zip.
const result = await bowmark.providers.brius.findProviders("90210");
return result.providers.map((p) => ({ name: p.name, phone: p.phone, city: p.city }));