# Protenders — 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 construction industry companies across Protenders.com by location, category, and keywords, then retrieve detailed information about specific companies. Filter through thousands of contractors, suppliers, and service providers to find exactly who you need in the construction sector.

**Category:** Business Directories | **Website:** [www.protenders.com/companies](https://www.protenders.com/companies) | **Docs:** [parse.bot/marketplace/83198223-97d7-4c09-bf3b-aa4c082568f3/protenders-com-api](https://parse.bot/marketplace/83198223-97d7-4c09-bf3b-aa4c082568f3/protenders-com-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-protenders-com-api-83198223/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company

Look up a specific company by name or slug. Searches across all companies and returns the best match — an exact match on name or slug is preferred, otherwise the top Algolia hit is returned. Returns full company details including contacts, activities, projects, and certifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Company name or slug to search for (e.g. 'barbanel', 'imep') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-protenders-com-api-83198223/get_company \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```

### search_companies

Full-text search across construction industry companies, filterable by location. Returns paginated results with company details including contacts, projects, and activities. Location is a facet filter (country, city, or region name as listed on the site). Omitting location returns all companies matching the query globally. Each page returns up to hits_per_page results; iterate pages 0..total_pages-1 for the full set.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `hits_per_page` | integer | No | Number of results per page (max 1000) |
| `location` | string | No | Filter by company location (country, city, or region name as listed on protenders.com). Examples: Lebanon, Dubai, UAE, Saudi Arabia, Qatar |
| `page` | integer | No | Page number (0-indexed) |
| `query` | string | No | Search keyword to filter companies by name or description |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-protenders-com-api-83198223/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hits_per_page":"<integer>","location":"<string>","page":"<integer>","query":"<string>"}'
```
