# Procore — 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 projects, bids, and company profiles on the Procore Construction Network. Retrieve project details including bid status, project scope, trades required, funding type, and solicitor contact information, as well as full company profiles for subcontractors and general contractors.

**Category:** Business Directories | **Website:** [procore.com/](https://procore.com/) | **Docs:** [parse.bot/marketplace/2acfed62-18ca-4602-8684-c779764f27ed/procore-com-api](https://parse.bot/marketplace/2acfed62-18ca-4602-8684-c779764f27ed/procore-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-procore-com-api-2acfed62/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get detailed information for a specific company by its slug. Returns full company profile including contact info, services, coverage areas, and business classification. Returns input_not_found if the company slug does not exist or the profile is private/inactive.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug from search_companies results' primarySlug field (e.g. 'rescue-hero-plumbing-and-pumping-bakersfield'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-procore-com-api-2acfed62/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_project_details

Get detailed information for a specific project by its slug. Returns project description, bid details, trades required, solicitor information, bidding instructions, and document info. Returns input_not_found if the project slug does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Project slug from search_projects results' primarySlug field (e.g. '8096_1337828_grand-arena-bid'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-procore-com-api-2acfed62/get_project_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_companies

Search the Procore Construction Network for companies (subcontractors, general contractors, etc.). Returns company profiles including name, services provided, business types, addresses, and coverage areas. Paginates via page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `query` | string | No | Search keyword for companies (e.g. 'plumbing', 'HVAC'). When omitted, returns all companies. |
| `sort` | string | No | Sort order for results. |

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

### search_projects

Search for construction projects and bids on the Procore Construction Network. Returns project data including titles, locations, bid due dates, solicitor information, and trade classifications. When a query is provided, results are filtered by keyword match against project titles and scopes. Without a query, returns all recent projects. Paginates via page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `funding_type` | string | No | Filter by funding type: 'public' or 'private'. |
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `query` | string | No | Search keyword for projects (e.g. 'electrical', 'plumbing'). When omitted, returns all recent projects. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-procore-com-api-2acfed62/search_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"funding_type":"<string>","page":"<integer>","page_size":"<integer>","query":"<string>","sort":"<string>"}'
```
