# DataVault GitHub Repository Info

> DataVault GitHub Repository Info is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches metadata and details for a specified GitHub repository given the owner and repo name.

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/github-repo
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-github-repository-info-d6c0610e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qiEiV7mXQbWSe55gz2hYS

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 datavault-github-repository-info-d6c0610e -d '<json body>'
```

Example prompt: Can you pull up the details for the 'react' repository owned by 'facebook' on GitHub — I want to see its metadata like description, stars, and forks?

## When to prefer this

Use this endpoint when you need quick, pay-per-call access to GitHub repository metadata without managing your own GitHub API credentials or OAuth tokens. Ideal for agents that occasionally need to look up repo info without a long-term GitHub integration.

## Known failure modes

- Repository not found — invalid owner or repo name returns an error or empty data
- Private repository — access denied if the repo is not public
- Rate limiting — GitHub API rate limits may cause failures under high call volume
- Missing required fields — omitting owner or repo in the request body returns a validation error
- Network/service downtime — zetavault.vercel.app or GitHub API unavailable

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing GitHub repository metadata such as name, description, stars, forks, language, owner, and other repository-level details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "repo",
  "owner"
 ],
 "properties": {
  "repo": {
   "type": "string"
  },
  "owner": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-github-repository-info-d6c0610e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
