# Orthogonal PredictLeads GitHub Repositories by Company

> Orthogonal PredictLeads GitHub Repositories by Company is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns GitHub repositories associated with a given company domain, with pagination support and smart billing for multi-page queries.

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/github_repositories
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-predictleads-github-repositories-by-company-ec841047
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_daAWp6CoXj9iqQBhGdLAx

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 orthogonal-predictleads-github-repositories-by-company-ec841047
```

Example prompt: Can you find all the GitHub repositories associated with stripe.com? Just pull the first page for now.

## When to prefer this

Use this endpoint when you need to discover or enumerate GitHub repositories associated with a specific company domain as part of competitive research, tech stack analysis, or developer ecosystem intelligence. It is especially useful for B2B workflows where you want to understand a company's open source presence. Prefer this over general GitHub search when you want company-domain-attributed repositories rather than user-attributed ones, and when you need paginated bulk retrieval with smart billing (subsequent pages are free).

## Known failure modes

- Company domain not found or has no associated GitHub repositories — returns empty list
- Invalid date format for first_seen_at_from or first_seen_at_until — returns validation error
- Invalid pagination parameters (negative page or limit) — returns error
- Network or upstream PredictLeads API unavailability — returns 5xx error
- Payment failure via x402 protocol — request not processed

## How this service works

Get GitHub repositories associated with a company Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

A paginated list of GitHub repositories associated with the specified company domain, including repository metadata such as name, URL, and first-seen timestamps. The response also includes billing metadata (requestId) for use as a parentRequestId in subsequent paginated calls, which are charged $0.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "page": {
       "type": "integer",
       "description": "For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "limit": {
       "type": "integer"
      },
      "first_seen_at_from": {
       "type": "string"
      },
      "first_seen_at_until": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-predictleads-github-repositories-by-company-ec841047/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
