# flutter.bip-rep.com

> flutter.bip-rep.com is a paid API for AI agents from flutter.bip-rep.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

## Facts

- Endpoint: POST https://flutter.bip-rep.com/pubspec/analyze
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pubspec-analyze-a52a4252
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s8W4bauMLI0oxCHupbaT-

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 pubspec-analyze-a52a4252 -d '<json body>'
```

## Example request

```json
{
 "input": {
  "body": {
   "pubspec": "name: test_app\nversion: 1.0.0\ndescription: A test Flutter application.\nenvironment:\n  sdk: '>=2.19.0 <3.0.0'\ndependencies:\n  flutter:\n    sdk: flutter\n  cupertino_icons: ^1.0.0\ndev_dependencies:\n  flutter_test:\n    sdk: flutter\n  flutter_lints: ^2.0.0"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "pubspec": {
       "type": "string",
       "description": "Raw pubspec.yaml text. Plain text body is also accepted."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "version": {
       "type": "string"
      },
      "latency_ms": {
       "type": "integer"
      },
      "environment": {
       "type": "object"
      },
      "has_flutter": {
       "type": "boolean"
      },
      "dependencies": {
       "type": "object"
      },
      "dependency_count": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pubspec-analyze-a52a4252/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from flutter.bip-rep.com](https://www.zero.xyz/host/flutter.bip-rep.com/llms.txt)
