Documentation Index
Fetch the complete documentation index at: https://docs.minerva.io/llms.txt
Use this file to discover all available pages before exploring further.
personal_information.full_name
becomes a top-level full_name column in the DataFrame, etc.
Map results to your own schema
Project any result onto your pydantic model — missing fields becomeNone
(with a one-time warning), so it never breaks:
strict=True to validate instead — raises on mismatch:
Which extras you need
| Method | Extra | Why |
|---|---|---|
to_dicts() | — | Pure stdlib |
to_df() | [pandas] | DataFrame construction |
to_csv(path) | — | Pure stdlib (uses csv module) |
to_table() | [table] | Pretty box-drawing via tabulate |
map_to(Model) | — | Pydantic is already a core dep |
Which responses support them
The list-shaped responses (EnrichResponse, ResolveResponse, UsageResponse)
implement the TabularMixin — they have to_dicts / to_df / to_csv /
to_table / map_to.
The dict-returning methods (get_li_contact_info, validate_emails,
infer_record_country, mc.api.call) return raw dict — convert to your
preferred format yourself if needed:

