# Floridaroof — 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 the Florida Roofing and Sheet Metal Contractors Association directory to find qualified roofing contractors in your area, then access detailed information about each member including their credentials and contact details. Quickly locate licensed professionals for your roofing projects without manually browsing the association's website.

**Category:** Business Directories | **Website:** [www.floridaroof.com/member-search/index](https://www.floridaroof.com/member-search/index) | **Docs:** [parse.bot/marketplace/4872d9a5-7702-45ed-a254-4fcd5b1338ff/floridaroof-com-api](https://parse.bot/marketplace/4872d9a5-7702-45ed-a254-4fcd5b1338ff/floridaroof-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-floridaroof-com-api-4872d9a5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_member_detail

Retrieve full details for a specific FRSA member by their profile path. Returns company name, full address, phone, fax, email, website, member category, and description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profile_path` | string | Yes | URL path or full URL to the member's profile page, e.g. '/TAMPA-ROOFING-CO-INC-10-1145.html'. Obtained from search_members results (profile_url field). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-floridaroof-com-api-4872d9a5/get_member_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"profile_path":"<string>"}'
```

### search_members

Search the FRSA member directory by keyword (city, company name, or general term), optionally filtered by location type and member category. Returns paginated results with 10 members per page including company name, address, phone, and profile URL. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Member category filter by numeric ID. Empty string means all categories. |
| `location` | string | No | Location type filter for interpreting the search text. Empty string means no filter. |
| `page` | integer | No | Page number for pagination (1-based). Each page returns up to 10 results. |
| `searchtext` | string | Yes | Search keyword — typically a city name, company name, or general roofing term. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-floridaroof-com-api-4872d9a5/search_members \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","location":"<string>","page":"<integer>","searchtext":"<string>"}'
```
