Discover/Lavery API
live

Lavery APIlavery.ca

Access Lavery's full lawyer directory via API. List all professionals with pagination or fetch individual profiles with practice areas, bar admissions, and contact details.

Endpoint health
verified 6d ago
list_lawyers
get_lawyer_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
20d ago

What is the Lavery API?

The Lavery API provides access to the complete lawyer and legal professional directory of Lavery, Québec's largest independent law firm, across 2 endpoints. Use list_lawyers to page through all team members returning name, title, offices, and profile slugs, then call get_lawyer_details with a slug to retrieve a full profile including practice areas, bar admission year and jurisdiction, contact details, and languages spoken.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination. Each page returns up to 16 lawyers.
api.parse.bot/scraper/a3b36e6d-dbd8-4154-a99e-9027f8e0a78f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a3b36e6d-dbd8-4154-a99e-9027f8e0a78f/list_lawyers?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace lavery-ca-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Lavery law firm team directory — browse and drill into profiles."""
from parse_apis.lavery_ca_api import Lavery, LawyerNotFound

client = Lavery()

# List team members across the firm, capped to 5 total items.
for summary in client.lawyer_summaries.list(limit=5):
    print(summary.name, "-", summary.title, "|", ", ".join(summary.offices))

# Drill into the first lawyer's full profile via the summary→detail navigation.
first = client.lawyer_summaries.list(limit=1).first()
if first is not None:
    lawyer = first.details()
    print(f"\n{lawyer.name} ({lawyer.title})")
    print(f"  Bar admission: {lawyer.bar_admission}")
    print(f"  Practices: {', '.join(lawyer.practices)}")
    print(f"  Languages: {', '.join(lawyer.languages)}")
    print(f"  Phone: {lawyer.phone}  Email: {lawyer.email}")

# Point lookup by slug discovered from the listing above.
if first is not None:
    try:
        detail = client.lawyers.get(lawyer_slug=first.lawyer_slug)
        print(f"\nLooked up: {detail.name}, offices: {', '.join(detail.offices)}")
    except LawyerNotFound as e:
        print(f"Lawyer not found: {e.message}")

print("\nexercised: lawyer_summaries.list / details / lawyers.get")
All endpoints · 2 totalmissing one? ·

Lists lawyers and legal professionals from the Lavery team page with pagination. Returns 16 results per page including name, title, offices, profile URL, and a slug for use with get_lawyer_details. The team page shows all professionals alphabetically.

Input
ParamTypeDescription
pageintegerPage number for pagination. Each page returns up to 16 lawyers.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "lawyers": "array of lawyer objects with name, title, offices, profile_url, and lawyer_slug",
    "has_next": "whether there is a next page",
    "total_pages": "total number of pages available"
  },
  "sample": {
    "page": 1,
    "lawyers": [
      {
        "name": "Jean-Philippe Abraham",
        "title": "Senior Associate",
        "offices": [
          "Québec",
          "Trois-Rivieres"
        ],
        "lawyer_slug": "2850-jean-philippe-abraham",
        "profile_url": "https://www.lavery.ca/en/lawyers-paralegals-notaries-lavery/2850-jean-philippe-abraham.html?page=1"
      },
      {
        "name": "Asma Amari",
        "title": "Student",
        "offices": [
          "Montréal"
        ],
        "lawyer_slug": "3868-asma-amari",
        "profile_url": "https://www.lavery.ca/en/lawyers-paralegals-notaries-lavery/3868-asma-amari.html?page=1"
      }
    ],
    "has_next": true,
    "total_pages": 4
  }
}

About the Lavery API

Endpoints and Data Coverage

The API exposes two endpoints. list_lawyers returns a paginated index of Lavery professionals — up to 16 records per page — with each record containing name, title, offices, profile_url, and lawyer_slug. The has_next and total_pages fields allow you to walk the full directory programmatically without guessing how many iterations are needed.

Individual Profile Data

get_lawyer_details accepts a lawyer_slug (e.g. 1686-arianne-arguin) obtained from list_lawyers and returns the full profile object. Fields include email, phone, title (such as Partner, Senior Associate, or Lawyer), offices (array), languages (array), practices (array of practice area names), and bar_admission (jurisdiction and year, e.g. Québec, 2023). This makes it straightforward to filter the team by admission year, office location, or practice area once you have the data in hand.

Pagination and Identifiers

The page parameter on list_lawyers is optional and defaults to the first page. The lawyer_slug field is stable across calls and is the required key for get_lawyer_details. There is no search or filter parameter built into list_lawyers — results are returned alphabetically and filtering must be done client-side after retrieval.

Reliability & maintenanceVerified

The Lavery API is a managed, monitored endpoint for lavery.ca — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lavery.ca changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official lavery.ca API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a searchable directory of Lavery lawyers filterable by practice area using the practices field from get_lawyer_details.
  • Aggregate bar admission data across the full team to analyze hiring trends by year and jurisdiction.
  • Map lawyer distribution across offices using the offices array returned by both endpoints.
  • Enrich a CRM with verified contact details — email and phone — for Lavery professionals.
  • Identify multilingual lawyers for matters requiring specific language capabilities using the languages field.
  • Monitor team changes over time by periodically pulling list_lawyers and comparing name and title fields.
  • Generate a structured dataset of Québec legal professionals segmented by seniority level from the title field.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Lavery offer an official public developer API?+
No. Lavery does not publish a public developer API or documented data feed for their team directory. This Parse API provides structured access to that directory.
What does `get_lawyer_details` return beyond what `list_lawyers` shows?+
list_lawyers returns name, title, offices, profile_url, and lawyer_slug. get_lawyer_details adds email, phone, languages, practices (array of practice area names), and bar_admission (jurisdiction and year). The slug from list_lawyers is required to call get_lawyer_details.
Can I filter or search lawyers by practice area or office directly in the API?+
Not currently. list_lawyers returns all professionals alphabetically with no filter or search parameters. Filtering by offices, practices, or other criteria must be done client-side after fetching the data. You can fork this API on Parse and revise it to add a filter parameter endpoint.
Does the API cover publications, case results, or biographical text from individual profiles?+
Not currently. The API covers contact details, practice areas, bar admissions, office locations, languages, and titles. Longer-form profile content such as publications or biography text is not included. You can fork this API on Parse and revise it to add an endpoint that captures those additional profile sections.
How does pagination work and how many lawyers are in the directory?+
Each call to list_lawyers returns up to 16 results. The response includes total_pages and has_next so you can determine exactly how many pages exist. Iterate from page 1 through total_pages to retrieve the full directory.
Page content last updated . Spec covers 2 endpoints from lavery.ca.
Related APIs in B2b DirectorySee all →
dentons.com API
Search Dentons' Montréal legal professionals by their practice areas and bar admissions to find the right lawyer for your needs. Retrieve detailed profiles including each attorney's expertise and licensing information across multiple jurisdictions.
lawyers.com API
Search and discover lawyers and law firms with detailed profiles, client reviews, and practice area information. Find legal articles and featured firms by specialty to help you locate the right legal representation for your needs.
ailalawyer.com API
Search and find immigration lawyers on AilaLawyer.com by location, language, and specialty, then view detailed profiles including their credentials and practice information. Easily browse through filtered results and discover the right legal expert for your immigration needs.
azbar.org API
Search for Arizona lawyers by name, location, specialty, or company to find the right legal professional for your needs. View detailed lawyer profiles including their specializations, licensed jurisdictions, law school, admission history, and any disciplinary records.
justia.com API
Access Justia's legal database: search the lawyer directory by practice area and location, retrieve attorney profiles, browse state statutes and case law, explore legal guides, and look up law schools — all in one API.
avvo.com API
Search for attorneys by location and specialty to find detailed professional profiles, reviews, and practice areas that match your legal needs. Browse community-driven legal Q&A to get answers to common legal questions and learn from other users' experiences.
martindale.com API
Search for attorneys and law firms on Martindale-Hubbell by location, practice area, and ratings, then access detailed profiles including contact information, reviews, and verified credentials. Build comprehensive attorney databases or connect with qualified legal professionals using real-time directory data.
canlii.org API
Access Canadian legal information from CanLII.org. Discover jurisdictions and databases, search case law and legislation across all provinces and territories, and retrieve full document text and metadata.