Discover/tlo.mit.edu API
live

tlo.mit.edu APItlo.mit.edu

Access MIT Technology Licensing Office listings via API. Search technologies by keyword, area, and license status. Retrieve full descriptions, case numbers, and researchers.

Endpoints
2
Updated
10h ago
Try it
Zero-based page number for pagination.
Full-text search query to filter technologies (e.g. 'robotics', 'machine learning').
Comma-separated numeric taxonomy IDs for impact area filters. IDs can be found in the face
Comma-separated license status codes to filter by. Accepts: U (Unlicensed), EL (Exclusivel
Comma-separated numeric taxonomy IDs for technology area filters. IDs can be found in the
api.parse.bot/scraper/582f973e-da78-4a2c-a848-a5a49ffa91ae/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/582f973e-da78-4a2c-a848-a5a49ffa91ae/search_technologies' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search and list available technologies from MIT TLO. Returns paginated results with technology summaries including title, case number, researchers, technology areas, and impact areas. Supports filtering by search query, license status, technology area, and impact area. Returns 20 results per page.

Input
ParamTypeDescription
pageintegerZero-based page number for pagination.
querystringFull-text search query to filter technologies (e.g. 'robotics', 'machine learning').
impact_areastringComma-separated numeric taxonomy IDs for impact area filters. IDs can be found in the facet_counts of the response.
license_statusstringComma-separated license status codes to filter by. Accepts: U (Unlicensed), EL (Exclusively Licensed), NEL (Non-Exclusively Licensed). Example: 'U' or 'U,EL'.
technology_areastringComma-separated numeric taxonomy IDs for technology area filters. IDs can be found in the facet_counts of the response.
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "query": "string",
    "results": "array of technology summary objects",
    "facet_counts": "object mapping facet labels to counts, or null",
    "result_count": "integer - number of results on current page"
  },
  "sample": {
    "page": 0,
    "query": "robotics",
    "results": [
      {
        "url": "https://tlo.mit.edu/industry-entrepreneurs/available-technologies/regenerative-bioreactor-ion-concentration-0",
        "slug": "regenerative-bioreactor-ion-concentration-0",
        "title": "Regenerative Bioreactor via Ion Concentration Polarization Waste Removal",
        "case_number": "25819",
        "researchers": "Jongyoon Han / Junghyo Yoon",
        "impact_areas": [
          "Healthy Living",
          "Sustainable Future"
        ],
        "invention_type": "Technology",
        "license_action": "License",
        "technology_areas": [
          "Biotechnology",
          "Drug Discovery and Research Tools"
        ]
      }
    ],
    "facet_counts": {
      "Unlicensed": 94,
      "Biotechnology": 38,
      "Exclusively Licensed": 10,
      "Non-Exclusively Licensed": 9,
      "Industrial Engineering & Automation": 101
    },
    "result_count": 20
  }
}

About the tlo.mit.edu API

The MIT TLO API provides 2 endpoints to search and retrieve technology listings from MIT's Technology Licensing Office. The search_technologies endpoint returns paginated summaries across 20 results per page, including title, case number, researcher names, technology areas, and impact areas. The get_technology endpoint delivers full descriptions, invention type, and taxonomy classifications for any individual listing identified by its URL slug.

What the API Returns

The search_technologies endpoint returns a page of up to 20 technology summaries from the MIT TLO available-technologies catalog. Each result includes a title, case_number, researchers array, technology_areas, and impact_areas. The response also carries facet_counts — a map of facet labels to integer counts — which you can inspect to discover valid numeric taxonomy IDs for the technology_area and impact_area filter parameters on subsequent requests.

Filtering and Pagination

Search accepts a query string for full-text filtering (e.g. 'crispr', 'photonics'). You can narrow results by license_status using comma-separated codes: U for Unlicensed, EL for Exclusively Licensed, and NEL for Non-Exclusively Licensed. Taxonomy filters use the numeric IDs found in facet_counts rather than human-readable names. Pagination is zero-based via the page parameter, and result_count tells you how many results came back on the current page.

Technology Detail

The get_technology endpoint accepts a slug — available from search result objects — and returns the full record: a long-form description, the case_number, invention_type (e.g. Technology, Software), and arrays for technology_areas and impact_areas when the source has them populated. The url field gives the canonical MIT TLO page for the record, useful for linking back or cross-referencing.

Coverage

The API covers publicly listed technologies on the MIT TLO available-technologies catalog. Records represent inventions that MIT is actively offering for licensing or partnership. Data freshness reflects the current state of the public catalog; technologies that have been removed or marked unavailable by MIT will no longer appear in search results.

Common use cases
  • Build a licensing-opportunity tracker that alerts you when new unlicensed MIT technologies matching a keyword appear.
  • Map MIT research output by querying technology_areas facet counts across the full catalog.
  • Populate an internal database of life-sciences IP by filtering on relevant impact_area taxonomy IDs.
  • Generate researcher publication and invention profiles by aggregating researchers fields across multiple search results.
  • Compare available software inventions (invention_type: Software) against hardware technologies in a side-by-side tool.
  • Feed a due-diligence pipeline with case_number and description fields for prospective licensees evaluating MIT IP.
  • Audit licensing status distribution across the catalog using license_status filter codes and facet_counts data.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does MIT TLO provide an official developer API for its technology listings?+
MIT's Technology Licensing Office does not publish a documented public developer API for its available-technologies catalog. The TLO site at tlo.mit.edu provides a browsable interface, but no official REST or GraphQL API with documentation and keys is offered to external developers.
How do I find valid values for the `technology_area` and `impact_area` filter parameters?+
Make any call to search_technologies without those filters — the response includes a facet_counts object that maps human-readable facet labels to their counts. The numeric taxonomy IDs embedded in those keys are what you pass to technology_area and impact_area. You can pass multiple IDs as a comma-separated string.
Does the API return contact information for MIT licensing managers or TLO staff?+
Not currently. The API returns researchers (the inventors), case_number, and description, but does not expose TLO licensing manager names, email addresses, or direct contact fields. You can fork this API on Parse and revise it to add an endpoint that extracts contact details if they appear on individual technology pages.
Are technologies that have already been licensed still returned by the search endpoint?+
The license_status parameter accepts EL (Exclusively Licensed) and NEL (Non-Exclusively Licensed) codes alongside U (Unlicensed), so licensed technologies can appear in results. Pass only U if you want to restrict results to unlicensed opportunities.
Does the API cover historical or expired MIT TLO listings that are no longer actively offered?+
Not currently. The API reflects the active available-technologies catalog; technologies removed from the public listing are not accessible through either endpoint. You can fork this API on Parse and revise it to add archival or historical coverage if MIT exposes that data elsewhere.
Page content last updated . Spec covers 2 endpoints from tlo.mit.edu.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
zenodo.org API
Search and retrieve research records, files, versions, and community data from Zenodo's open science repository. Access detailed information about academic publications, datasets, and research outputs, including file listings, version history, and community collections all in one place.
dictionary.cambridge.org API
Look up word definitions, pronunciations, translations, synonyms, and example sentences from Cambridge Dictionary. Search and browse thousands of words, get daily word recommendations, and access specialized business or American English dictionaries.
ieeexplore.ieee.org API
Search for scientific papers and retrieve their metadata, abstracts, references, and citations from IEEE Xplore's collection of journals and conferences. Look up author profiles, browse journals, and access paper details and full text sections all programmatically.
openalex.org API
Search and retrieve millions of academic papers, articles, and books from OpenAlex's comprehensive global research catalog to find scholarly works by topic, author, or citation. Discover detailed information about research publications including metadata, abstracts, and citation counts to stay current with academic literature in your field.
neetcode.io API
Access curated coding problem collections including Core Skills, Blind 75, NeetCode 150, and NeetCode 250, along with detailed problem solutions and course content organized by chapters and lessons. Perfect for preparing for technical interviews and mastering data structures and algorithms through structured learning paths.
niche.com API
Search and retrieve data on K-12 schools and colleges from Niche.com, including rankings, report card grades, stats, and user reviews.
ucas.com API
Search and explore UK university courses, apprenticeships, and scholarships all in one place, while discovering detailed information about education providers and their offerings. Find the perfect educational path by filtering courses and apprenticeships by your preferences and accessing comprehensive provider details to inform your decisions.