# Quickcompany — 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 Indian trademark registrations and retrieve detailed information about specific marks, including status, proprietor, and correspondence history. Browse trademark journals, explore Nice Classification classes, and filter results by status, class, or keyword to monitor registrations and track opposition trends.

**Category:** Government & Public Data | **Website:** [quickcompany.in/](https://quickcompany.in/) | **Docs:** [parse.bot/marketplace/e023b987-9ca1-4b71-add2-3b7124a0a68b/quickcompany-in-api](https://parse.bot/marketplace/e023b987-9ca1-4b71-add2-3b7124a0a68b/quickcompany-in-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-quickcompany-in-api-e023b987/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_objected_trademarks_class35_2024

Retrieve objected trademark cases filtered to Nice Classification class 35 and application year 2024. Returns a list of matching trademarks with basic information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickcompany-in-api-e023b987/get_objected_trademarks_class35_2024 \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_trademark_classes

List all trademark Nice Classification classes (1 through 45) with their names and URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickcompany-in-api-e023b987/get_trademark_classes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_trademark_detail

Get full details for a specific trademark by its application ID and slug. Returns comprehensive information including status, proprietor, description, documents, and correspondence history.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `application_id` | string | Yes | Trademark application ID (numeric string, e.g. 2329312). Obtainable from search_trademarks results. |
| `slug` | string | Yes | URL slug for the trademark (e.g. tech-ed). Obtainable from search_trademarks results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickcompany-in-api-e023b987/get_trademark_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"application_id":"<string>","slug":"<string>"}'
```

### list_trademark_journals

List recent trademark journals with publication dates and brand counts.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickcompany-in-api-e023b987/list_trademark_journals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_trademarks

Search for trademarks by keyword, status, and class. Returns paginated results with trademark summaries including application IDs, names, statuses, and proprietor information. Default query is 'a' when omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `classes` | string | No | Filter by Nice Classification class number (1 through 45). |
| `order` | string | No | Sort order for results. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword to find trademarks by name. |
| `status` | string | No | Filter by trademark status. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickcompany-in-api-e023b987/search_trademarks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"classes":"<string>","order":"<string>","page":"<integer>","query":"<string>","status":"<string>"}'
```
