# Barcode Get Barcode

> Returns a raw PNG image of the barcode. Ideal for direct embedding or file download.

- Skill: `gabrielmoreira/barcode-get-barcode` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/barcode-get-barcode`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/barcode-get-barcode/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/barcode-get-barcode

---


## Endpoint

**GET https://requiems.xyz/v1/technology/barcode**

## Generate Barcode (PNG)

Returns a raw PNG image of the barcode. Ideal for direct embedding or file download.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `data` | string | yes | query | The text or numeric string to encode in the barcode |
| `type` | string | yes | query | Barcode format: code128, code93, code39, ean8, ean13 |

## Response Example

```json
<binary PNG image data>
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `(binary)` | bytes | Raw PNG image bytes. Content-Type is image/png. |

## Errors

- `undefined` **400** — Missing or invalid parameters (e.g. data not provided, unsupported type)
- `undefined` **422** — Data is invalid for the chosen barcode type (e.g. wrong digit count for EAN-8/EAN-13, non-numeric EAN data)

