Search github
Finds repositories on GitHub. This reads the PUBLIC index and returns nothing an installation unlocks: it is how you find a repository to fork, not a way…
POST /v1/provider/github/search
| Address | https://api.hanzo.ai/v1/provider/github/search |
| Method | POST |
| Operation | post_provider_github_search |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Finds repositories on GitHub.
This reads the PUBLIC index and returns nothing an installation unlocks: it is how you find a repository to fork, not a way to see inside one. The org's own token is used only so the query is rate-limited against the installation rather than anonymously — the results are the same ones anyone would get.
Request
2 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
limit | body | integer (int64) | — | Limit caps the answer; 0 takes the default and anything above the ceiling is clamped rather than refused. |
q | body | string | — | Q is GitHub's own search syntax, passed through: "tetris language:go", "org:hanzoai stars:>10". |
Response
| Status | Body | Meaning |
|---|---|---|
200 | provider.githubSearchOut | ok |
default | problem-details | refused |
200 body — 10 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
count | body | integer (int64) | — | Count is how many hits Repos carries. It is that array's length, NOT GitHub's total_count, so it never exceeds limit and says nothing about how many more… |
repos | body | provider.githubSearchHit[] | — | Repos are the matching repositories in GitHub's own relevance order, capped at limit. |
repos[].clone_url | body | string | — | CloneURL is the repository's https git remote. |
repos[].default_branch | body | string | — | DefaultBranch is the branch a clone checks out. |
repos[].description | body | string | — | Description is the blurb the repository's owner wrote. |
repos[].full_name | body | string | — | FullName is the repository's "owner/repo" on GitHub. |
repos[].html_url | body | string | — | HTMLURL is the repository's page on github.com. |
repos[].language | body | string | — | Language is the primary language GitHub detected from the file mix ("Go", "TypeScript"). |
repos[].private | body | boolean | — | Private is GitHub's visibility flag, passed through. |
repos[].stars | body | integer (int64) | — | Stars is GitHub's stargazers_count as the SEARCH INDEX held it when the query ran — a snapshot, not a live count off the repository. |
Failure carries the platform error shape — see Errors.
Examples
hanzo provider github searchimport { Configuration, ProviderApi } from 'hanzoai';
const api = new ProviderApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postProviderGithubSearch({ limit: 0, q: "<q>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ProviderApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ProviderApi(client).post_provider_github_search(limit=0, q="<q>")cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.ProviderAPI.PostProviderGithubSearch(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, provider_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = provider_api::post_provider_github_search(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ProviderApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new ProviderApi(client).postProviderGithubSearch();The method above is the one at the current release of the document. [email protected] (npm) was generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/provider/github/search \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"limit": 0,
"q": "<q>"
}'MCP declares no tool for provider — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?