getSiteInfo
Fetch site-level metadata including identity, locale, currency, and brand assets to establish directory context and formatting rules for the session.
Instructions
Get site-level identity, locale, currency, and brand-image URLs - Returns the site's own identity and locale context — what kind of directory this is, who it serves, the formatting conventions to respect, and the URLs of branding assets. Read-only, no params. Call this once on the first BD task of a conversation and cache for the session; the values rarely change mid-conversation.
Response shape: { status: "success", message: { website_id, website_name, website_phone, full_url, profession, industry, primary_country, language, timezone, date_format, distance_format, website_currency, currency_prefix, currency_suffix, currency_format, currency_decimal_divider, currency_thousand_divider, brand_images_relative: {...}, brand_images_absolute: {...} } }.
Field semantics to know:
website_id= the site's tenant ID (integer). Used for centralized-admin URL composition (e.g.&newsite=<website_id>onww2.managemydirectory.com/admin/...links). Cache per session.profession= SITE-LEVEL setting describing the archetype of member this directory lists (e.g."Doctor","Personal Trainer"). NOT related to a member'sprofession_id(that's a foreign key into the per-memberlist_professionstaxonomy).industry= SITE-LEVEL setting describing the market/vertical the site serves (e.g."Healthcare","Fitness"). Site metadata, not a member attribute.full_url= the canonical site URL withhttps://and no trailing slash. Use this when composing public profile URLs (<full_url>/<user.filename>,<full_url>/<seo_id filename>).timezone/date_format/distance_format/website_currency+ thecurrency_*formatting bits = locale context for how to present data back to the user (dates, distances, money). Respect these when formatting.brand_images_relativeandbrand_images_absolute= parallel objects with 8 keys each (website_logo,website_mascot,website_background,favicon,default_profile_image,default_logo_image,verified_member_image,watermark). Relative = path-only (e.g./images/logo.webp); absolute = full https URL. Use absolute URLs when embedding in emails / external content; relative when embedding on the site itself.default_profile_imageon a member read signals "no real photo" — compareimage_main_fileto this URL to detect placeholder state.
Why agents should call this early: the grounding it provides (site purpose, member archetype, locale) shapes every subsequent decision — what 'add a member' means, what categories are relevant, how to format dates and money, what the profile-placeholder image looks like, which brand assets to use in designs.
Auth: X-Api-Key. Rate limit: standard 100 req/60s. Cache for the session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||