# Sijilat — 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 for and retrieve detailed information about registered companies in Bahrain, including their commercial registration data from the official Sijilat system. Find company profiles, registration details, and business information all in one place.

**Category:** Government & Public Data | **Website:** [www.sijilat.bh/public-search-cr/search-cr-2.aspx](https://www.sijilat.bh/public-search-cr/search-cr-2.aspx) | **Docs:** [parse.bot/marketplace/3509381e-dc15-4c7e-8b42-e81d47402c87/sijilat-bh-api](https://parse.bot/marketplace/3509381e-dc15-4c7e-8b42-e81d47402c87/sijilat-bh-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-sijilat-bh-api-3509381e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Retrieve the full details of a specific company registration including company summary, commercial address, business activities, partners, and authorized signatories. The cr_no and branch_no are obtained from search_companies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `branch_no` | string | No | Branch number within the CR (e.g. '1'). Obtained from search_companies results. |
| `cr_no` | string | Yes | Commercial Registration number (e.g. '220'). Obtained from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sijilat-bh-api-3509381e/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"branch_no":"<string>","cr_no":"<string>"}'
```

### search_companies

Search for Bahrain-based companies by commercial name (English) or CR number. Returns paginated results with summary information for each matching company including registration status, type, and activities. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cr_number` | string | No | Commercial Registration number to search for (e.g. '220'). At least one of query or cr_number must be provided. |
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page. |
| `query` | string | No | Company name to search for in English (e.g. 'bank', 'trading'). At least one of query or cr_number must be provided. |

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