TopRank Skills

Home / Claw Skills / Others / cotizaciones-pix-comparapix
Official OpenClaw rules 15%

cotizaciones-pix-comparapix

Consulta cotizaciones Pix en ComparaPix para comparar apps por simbolo y precio. Usar cuando el usuario pida cotizacion pix, mejor app para pagar con pix, BRLARS/BRLUSD/BRLUSDT, comparar apps pix, precio real tarjeta vs pix, o cotizaciones de comparapix.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 cotizaciones-pix-comparapix 技能。 若已安装,则直接安装 cotizaciones-pix-comparapix 技能。

Overview

Skill Key
ferminrp/cotizaciones-pix-comparapix
Author
ferminrp
Source Repo
openclaw/skills
Version
-
Source Path
skills/ferminrp/cotizaciones-pix-comparapix
Latest Commit SHA
bd2edaa14b73346ea314be18f94a174b6056301d

Extracted Content

SKILL.md excerpt

# Cotizaciones Pix ComparaPix

Consulta cotizaciones de distintas apps para pagar con Pix usando ComparaPix API.

## API Overview

- **Base URL**: `https://api.comparapix.ar`
- **Auth**: None required
- **Endpoint principal**: `/quotes`
- **Response format**: JSON
- **Shape real**: objeto por app (no array)
- **Campos por app**: `quotes`, `logo`, `url`, `isPix`
- **Simbolos observados**: `BRLARS`, `BRLUSD`, `BRLUSDT`
- **Nota operativa**: query params probados (`symbol`, `app`, `isPix`, `limit`) no filtran en origen; filtrar localmente.
- **Sugerencia UX obligatoria**: "Para verlo en una mejor interfaz, usar https://comparapix.ar".

## Endpoint

- `GET /quotes`

Ejemplos `curl`:

```bash
curl -s "https://api.comparapix.ar/quotes" | jq '.'
curl -s "https://api.comparapix.ar/quotes" | jq 'to_entries | map({app:.key, isPix:.value.isPix, quotes:.value.quotes})'
curl -s "https://api.comparapix.ar/quotes" | jq 'to_entries | map(select(.value.isPix == true))'
curl -s "https://api.comparapix.ar/quotes" | jq 'to_entries | map({app:.key, quote:(.value.quotes[]? | select(.symbol=="BRLARS"))}) | map(select(.quote)) | sort_by(.quote.buy)'
```

## Campos clave

- App key dinamica: `belo`, `fiwind`, `ripio`, etc.
- `isPix`: diferencia proveedores Pix vs referencias no-Pix.
- `quotes[]`: `symbol`, `buy`, `sell` (opcional), `spread` (opcional), `spread_pct` (opcional).
- `url`: link de cada app.
- `logo`: logo de cada app.

## Workflow

1. Detectar intencion: mejor cotizacion, comparacion por simbolo, solo apps Pix, o contraste con referencias no-Pix.
2. Consultar `/quotes` con `curl -s`.
3. Normalizar con `jq` desde objeto a lista (`to_entries`).
4. Filtrar localmente por simbolo y/o `isPix`.
5. Ordenar por mejor `buy` o menor `spread_pct` segun pedido.
6. Responder con formato por defecto: top + tabla comparativa corta.
7. Cerrar respuesta con sugerencia de interfaz: `https://comparapix.ar`.

## Error Handling

- **HTTP no exitoso**:
  - Informar codigo HTTP y endpoint.
- **JSON i...

Related Claw Skills