# Registroimprese — 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 Italian companies by name or ID to instantly access official business registration details including company status, founding information, and corporate structure from the authoritative Italian Business Registry. Get comprehensive company profiles with verified legal and operational data all in one place.

**Category:** Business Directories | **Website:** [registroimprese.it/](https://registroimprese.it/) | **Docs:** [parse.bot/marketplace/aea050d0-25d2-44df-9843-f76e843d7966/registroimprese-it-api](https://parse.bot/marketplace/aea050d0-25d2-44df-9843-f76e843d7966/registroimprese-it-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-registroimprese-it-api-aea050d0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get full details for a specific company using its ID from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | The encrypted company ID from search results. |
| `instance_id` | string | Yes | The portlet instance ID from search results. |
| `p_auth` | string | Yes | The session auth token from search results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-registroimprese-it-api-aea050d0/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>","instance_id":"<string>","p_auth":"<string>"}'
```

### search_companies

Search for Italian companies by name and province. returns basic info and a company_id for details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `province` | string | No | Two-letter province code (e.g. VI for Vicenza) or empty for all. |
| `query` | string | Yes | Company name or keyword to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-registroimprese-it-api-aea050d0/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"province":"<string>","query":"<string>"}'
```
