Discover/Fasken API
live

Fasken APIfasken.com

Search and retrieve detailed Fasken lawyer profiles including bar admission years, practice areas, jurisdictions, and contact info via 2 structured endpoints.

Endpoints
2
Updated
2mo ago

What is the Fasken API?

The Fasken API provides 2 endpoints to search and retrieve lawyer profiles from Fasken's global directory. search_lawyers returns paginated summaries filtered by office, practice area, and role category, while get_lawyer_profile delivers a full profile including bar admission years by jurisdiction, languages spoken, biography, email, phone, and office location for a specific attorney.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-based).
Number of results per page (1-100).
Free-text search query to match against lawyer names or biographies.
Office location filter (e.g. 'Montréal', 'Toronto', 'Vancouver', 'Ottawa', 'Québec City', 'London', 'Johannesburg'). Omitting returns lawyers from all offices.
Practice area filter (e.g. 'Mergers & Acquisitions', 'Corporate/Commercial', 'Litigation and Dispute Resolution', 'Private Equity', 'Capital Markets'). Omitting returns lawyers from all practices.
Role category filter. Known values: 'Lawyers & Agents', 'Legal Professionals', 'Business Professionals', 'Firm Leadership'.
api.parse.bot/scraper/99a24835-bbdd-4cb9-ac7e-fecff8f097e5/<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 POST 'https://api.parse.bot/scraper/99a24835-bbdd-4cb9-ac7e-fecff8f097e5/search_lawyers' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "page": "1",
  "limit": "15",
  "office": "Montréal",
  "practice": "Mergers & Acquisitions",
  "role_category": "Lawyers & Agents"
}'
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 fasken-com-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: Fasken Lawyers API — search lawyers and retrieve detailed profiles."""
from parse_apis.Fasken_Lawyers_API import Fasken, LawyerNotFound

client = Fasken()

# Search for M&A lawyers in Montréal
for lawyer in client.lawyers.search(office="Montréal", practice="Mergers & Acquisitions", limit=3):
    print(lawyer.name, lawyer.role, lawyer.bar_jurisdiction)

# Drill down into the first result's full profile
lawyer = client.lawyers.search(office="Montréal", practice="Mergers & Acquisitions", limit=1).first()
if lawyer:
    profile = lawyer.refresh()
    print(profile.name, profile.jurisdictions, profile.bar_years)
    print(profile.biography[:150])

# Handle a non-existent lawyer profile
try:
    bad_lawyer = client.lawyers.search(query="nonexistent-xyz", limit=1).first()
    if bad_lawyer:
        bad_lawyer.refresh()
except LawyerNotFound as exc:
    print(f"Lawyer not found: {exc}")

print("exercised: lawyers.search / lawyer.refresh / LawyerNotFound error handling")
All endpoints · 2 totalmissing one? ·

Search for lawyers at Fasken filtered by office, practice area, role category, and free-text query. Returns paginated results with summary information including name, slug, role, offices, practices, bar jurisdictions, languages, and a short biography. Uses the Coveo search index backing the Fasken people directory. Pagination is page-based with configurable page size.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
limitintegerNumber of results per page (1-100).
querystringFree-text search query to match against lawyer names or biographies.
officestringOffice location filter (e.g. 'Montréal', 'Toronto', 'Vancouver', 'Ottawa', 'Québec City', 'London', 'Johannesburg'). Omitting returns lawyers from all offices.
practicestringPractice area filter (e.g. 'Mergers & Acquisitions', 'Corporate/Commercial', 'Litigation and Dispute Resolution', 'Private Equity', 'Capital Markets'). Omitting returns lawyers from all practices.
role_categorystringRole category filter. Known values: 'Lawyers & Agents', 'Legal Professionals', 'Business Professionals', 'Firm Leadership'.
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "limit": "integer",
    "lawyers": "array of lawyer summary objects",
    "total_count": "integer"
  },
  "sample": {
    "data": {
      "page": 1,
      "limit": 3,
      "lawyers": [
        {
          "name": "John Doe",
          "role": [
            "Partner"
          ],
          "slug": "peter-villani",
          "email": "[email protected]",
          "phone": "+1 (555) 012-3456",
          "offices": [
            "Montréal"
          ],
          "languages": [
            "French",
            "Italian",
            "English"
          ],
          "practices": [
            "Mergers & Acquisitions",
            "Capital Markets",
            "Private M&A"
          ],
          "profile_url": "https://www.fasken.com/en/peter-villani",
          "short_biography": "John Doe leads complex transactions with major players in the retail, ecommerce, fibre optics testing, and telecommunications sectors.",
          "bar_jurisdiction": [
            "Ontario",
            "Québec"
          ]
        }
      ],
      "total_count": 69
    },
    "status": "success"
  }
}

About the Fasken API

Searching Lawyers

The search_lawyers endpoint accepts POST requests with filters for office (e.g. Montréal, Toronto, Vancouver, London), practice (e.g. Mergers & Acquisitions, Litigation and Dispute Resolution), and role_category (e.g. Lawyers & Agents, Legal Professionals). A free-text query parameter matches against names and biographies. Results are paginated via page and limit (1–100 per page) and each item in the lawyers array includes the lawyer's name, URL slug, role, associated offices, practice areas, bar jurisdictions, languages, and a short biography excerpt. The total_count field indicates the full result set size.

Retrieving Full Profiles

The get_lawyer_profile endpoint takes a slug — the path segment identifying an individual lawyer, obtainable from search_lawyers results — and returns a complete profile object. Fields include name, role, email, phone, office, biography, languages, profile_url, and two structured arrays: bar_years (admission year strings) and jurisdictions (jurisdiction names paired with admission year). This makes it straightforward to filter or display attorneys by when and where they were called to the bar.

Coverage and Scope

The directory covers Fasken offices across Canada, the United Kingdom, and South Africa. Practice area strings match those used on Fasken's public people directory, including corporate, litigation, tax, employment, and transactional areas. Filters can be combined — for example, pairing office=Montréal with practice=Mergers & Acquisitions and role_category=Lawyers & Agents narrows results to that specific intersection.

Reliability & maintenance

The Fasken API is a managed, monitored endpoint for fasken.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fasken.com 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 fasken.com 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.

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 filtered lawyer-finder tool that maps Fasken M&A attorneys by office and bar jurisdiction
  • Aggregate bar admission years across practice groups to analyze seniority distribution at Fasken
  • Populate a CRM with structured contact data (email, phone, office) for Fasken attorneys
  • Generate jurisdiction-specific attorney shortlists by combining the practice and office filters in search_lawyers
  • Display multilingual attorney profiles by surfacing the languages field for client-facing directories
  • Cross-reference jurisdictions admission years to identify recently called lawyers in specific practice areas
  • Monitor additions to Fasken's lawyer roster by periodically paginating search_lawyers and comparing total_count
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 Fasken provide an official developer API for its lawyer directory?+
Fasken does not publish a public developer API for its people directory. This Parse API provides structured programmatic access to the same profile data available on fasken.com/en/people.
What does `get_lawyer_profile` return that `search_lawyers` does not?+
search_lawyers returns summary-level data: name, slug, role, offices, practices, bar jurisdictions, languages, and a short biography excerpt. get_lawyer_profile adds the lawyer's direct email address, phone number, full biography text, and the bar_years array with structured admission year strings alongside the jurisdictions array — details not present in the search result objects.
Can I filter `search_lawyers` results by bar admission year?+
The search_lawyers endpoint does not expose a bar admission year filter. You can retrieve year data from get_lawyer_profile via the bar_years and jurisdictions fields and filter client-side. If you need server-side year filtering, you can fork this API on Parse and revise it to add that parameter.
Does the API cover Fasken alumni, former partners, or non-lawyer staff in detail?+
The API covers current directory listings across role categories including Lawyers & Agents, Legal Professionals, Business Professionals, and Firm Leadership — as surfaced by the role_category filter. Alumni and former staff profiles are not included. You can fork the API on Parse and revise it to add an alumni endpoint if Fasken exposes that data on a separate directory page.
How does pagination work in `search_lawyers`?+
Pagination is 1-based. Pass page (starting at 1) and limit (1–100) in the POST body. The response always includes total_count, so you can calculate the number of pages by dividing total_count by your chosen limit. If no page or limit is supplied, the endpoint applies default values.
Page content last updated . Spec covers 2 endpoints from fasken.com.
Related APIs in B2b DirectorySee all →
dnb.com API
Search millions of companies in Dun & Bradstreet's global business directory to find detailed company profiles and verify D-U-N-S numbers. Look up key business information like company details and identifiers to support due diligence, sales prospecting, and business intelligence needs.
crunchbase.com API
Search and retrieve detailed information about companies, investors, and key people to discover funding opportunities, track market competitors, and analyze investment trends. Access comprehensive profiles including organization details, investor backgrounds, and complete funding round histories all in one place.
ycombinator.com API
Access comprehensive data from the Y Combinator ecosystem, including company profiles, founder and partner information, job listings, and the YC library. Filter companies by batch, industry, and hiring status, and explore detailed profiles with social links, team information, and funding metadata.
opencorporates.com API
Access comprehensive company registration data, officer details, and filing histories from OpenCorporates across jurisdictions worldwide to research businesses and their leadership. Search for specific companies or officers, retrieve detailed corporate information, and explore filing records to support due diligence, compliance checks, and business intelligence.
rusprofile.ru API
Search Russian companies and retrieve their detailed profiles including financial information, registration details, and director information from Rusprofile's database. Look up director credentials by their tax identification number and discover company relationships and links.
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.
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.
dunsnumberlookup.dnb.com API
Search for detailed company information using Dun & Bradstreet's database by entering a company name or registration number along with a country code. Get back comprehensive business data including operating status, address, location type, and registration details to verify company credentials and find key business information.