Finds repositories on 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/integrations/github/search
| Address | https://api.hanzo.ai/v1/integrations/github/search |
| Method | POST |
| Operation | post_integrations_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 | — | 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 | githubSearchOut | ok |
200 body — 10 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
count | body | integer | — | 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 | 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 | — | 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 integrations github searchimport { Configuration, IntegrationsApi } from 'hanzoai';
const api = new IntegrationsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postIntegrationsGithubSearch({ limit: 0, q: "<q>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import IntegrationsApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = IntegrationsApi(client).post_integrations_github_search(limit=0, q="<q>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.IntegrationsAPI.PostIntegrationsGithubSearch(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, integrations_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = integrations_api::post_integrations_github_search(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.IntegrationsApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new IntegrationsApi(client).postIntegrationsGithubSearch();curl -X POST https://api.hanzo.ai/v1/integrations/github/search \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"limit": 0,
"q": "<q>"
}'The door reaches integrations through the integrations tool, which names its 45 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_connectors"
}
}
}'How is this guide?