# Look Up BCBS Prefix

> Perform Look Up BCBS Prefix through BCBS.

Source: [https://genhealth.ai/docs/workflows/integrations/bcbs/bcbs_lookup_prefix](https://genhealth.ai/docs/workflows/integrations/bcbs/bcbs_lookup_prefix)

Integration: [BCBS](https://genhealth.ai/docs/workflows/integrations/bcbs.md)

- Handler: `bcbs_lookup_prefix`

## Inputs

- `prefix` — Prefix (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `prefix` — Prefix
- `state` — State
- `company` — Company
- `source_url` — Source Url
- `source_sha256` — Source Sha256
- `retrieved_at` — Retrieved At
- `manual_review` — Manual Review
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "prefix"
  ],
  "properties": {
    "prefix": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "state": {},
    "prefix": {},
    "status": {},
    "company": {},
    "success": {},
    "source_url": {},
    "retrieved_at": {},
    "manual_review": {},
    "source_sha256": {}
  },
  "additionalProperties": true
}
```
