# Tlo Mit — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and discover available technologies from MIT's Technology Licensing Office, filtering by keywords and accessing detailed information about each innovation. Find licensing opportunities and learn about specific technologies available for commercialization or partnership.

**Category:** Government & Public Data | **Website:** [tlo.mit.edu/industry-entrepreneurs/available-technologies](https://tlo.mit.edu/industry-entrepreneurs/available-technologies) | **Docs:** [parse.bot/marketplace/83d5c2ac-c562-43ce-9f4f-48e0ca49ae4c/tlo-mit-edu-api](https://parse.bot/marketplace/83d5c2ac-c562-43ce-9f4f-48e0ca49ae4c/tlo-mit-edu-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-tlo-mit-edu-api-83d5c2ac/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_technology

Get detailed information about a specific technology by its URL slug. Returns the full description, researchers list, invention type, case number, technology areas, and impact areas when available. The slug is available from search_technologies results[*].slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the technology page (e.g. 'regenerative-bioreactor-ion-concentration-0'). Available from search_technologies results[*].slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tlo-mit-edu-api-83d5c2ac/get_technology \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_technologies

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 up to 20 results per page. Facet counts provide taxonomy IDs and researcher counts for further filtering. Pagination is zero-based.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `impact_area` | string | No | Comma-separated numeric taxonomy IDs for impact area filters. IDs can be found in the facet_counts of the response. |
| `license_status` | string | No | Comma-separated license status codes to filter by. Accepts: U (Unlicensed), EL (Exclusively Licensed), NEL (Non-Exclusively Licensed). Example: 'U' or 'U,EL'. |
| `page` | integer | No | Zero-based page number for pagination. |
| `query` | string | No | Full-text search query to filter technologies (e.g. 'robotics', 'machine learning'). |
| `technology_area` | string | No | Comma-separated numeric taxonomy IDs for technology area filters. IDs can be found in the facet_counts of the response. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tlo-mit-edu-api-83d5c2ac/search_technologies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"impact_area":"<string>","license_status":"<string>","page":"<integer>","query":"<string>","technology_area":"<string>"}'
```
