# Sbis — 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.

> Find and review healthcare information systems that have received official S-RES certification from SBIS, Brazil's health informatics society. Browse the complete list of approved electronic health record systems to identify certified solutions for your healthcare organization.

**Category:** Healthcare | **Website:** [sbis.org.br/certificacoes/certificacao-software/sistemas-certificados/](https://sbis.org.br/certificacoes/certificacao-software/sistemas-certificados/) | **Docs:** [parse.bot/marketplace/3c211068-b931-4e26-b1aa-695e9631aa14/sbis-org-br-api](https://parse.bot/marketplace/3c211068-b931-4e26-b1aa-695e9631aa14/sbis-org-br-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-sbis-org-br-api-3c211068/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_certified_systems

List all systems holding the S-RES SBIS certification. Optionally filter by a search term that matches against product name, developer, category, certificate number, or NGS level. Returns the full table of certified systems with certificate details, developer information, maturity stage, and validity dates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `search` | string | No | Case-insensitive search term to filter systems. Matches against product name/version, developer name/CNPJ, category/modality, certificate number, or NGS level. Omit or pass empty string to return all systems. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sbis-org-br-api-3c211068/list_certified_systems \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"search":"<string>"}'
```
