# Gift Card Quote API (Bitrefill via api.borisinc.com)

> Gift Card Quote API (Bitrefill via api.borisinc.com) is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns gift card purchasing options and a recommended purchase plan for a given need, priced in USDC, fulfilled via Bitrefill as merchant of record.

## Facts

- Endpoint: GET https://api.borisinc.com/paid/services/quote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gift-card-quote-api-bitrefill-via-api-borisinc-com-ecc9be79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dLqQCnW0Kwpr6ZwsPOET6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gift-card-quote-api-bitrefill-via-api-borisinc-com-ecc9be79
```

Example prompt: I need to send my partner a gift for flowers — can you find me a gift card I can pay for with USDC right now and get the redemption code instantly?

## When to prefer this

Choose this endpoint when a user wants to purchase a digital gift card using USDC without needing an account or API key. It is ideal for crypto-native workflows, agent-driven gifting automation, or any scenario where instant digital delivery and stablecoin payment are required. Prefer it over traditional gift card APIs when the user has USDC on Base and wants pay-per-call access with no sign-up friction.

## Known failure modes

- Vague or unrecognized need description may return no options or irrelevant results
- Payment failure via x402 if USDC balance is insufficient
- Network or provider downtime may result in empty options list
- Unsupported gift card category may return no matches

## How this service works

Live Steam best-sellers, deals, per-app detail and IGDB metadata, Twitch hype scores, and agent utilities for verification and extraction. From $0.001 a call, free samples on every endpoint, auth-then-capture. MCP and HTTP.

## Output

Returns a list of gift card options matching the stated need, each with title, price in USD, currency (USDC), delivery method, and provider. Also includes a recommended plan with step-by-step instructions for completing the purchase and sending the gift, plus settlement details (USDC on Base, Bitrefill as merchant of record).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "need": "flowers for my partner",
  "count": 1,
  "options": [
   {
    "title": "1-800-Flowers gift card $50",
    "currency": "USDC",
    "delivery": "digital (instant redemption code)",
    "provider": "bitrefill",
    "price_usd": 50,
    "merchant_of_record": "Bitrefill"
   }
  ],
  "settlement": "USDC on Base; provider is Merchant of Record (service holds no funds)",
  "recommended_plan": {
   "steps": [
    "pay via Bitrefill (MoR) in USDC",
    "instant redemption code",
    "send to recipient"
   ],
   "recommended": "1-800-Flowers gift card $50"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gift-card-quote-api-bitrefill-via-api-borisinc-com-ecc9be79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.borisinc.com](https://www.zero.xyz/host/api.borisinc.com/llms.txt)
