Skip to main content
POST
/
api
/
github
/
repos
/github/repos
curl --request POST \
  --url https://api.anysite.io/api/github/repos \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "repo": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "@type": "@github_repo",
    "description": "<string>",
    "language": "<string>",
    "star_count": 0,
    "fork_count": 0,
    "open_issue_count": 0,
    "watcher_count": 0,
    "subscriber_count": 0,
    "network_count": 0,
    "topics": [],
    "license": "<string>",
    "homepage": "<string>",
    "visibility": "",
    "is_fork": false,
    "is_archived": false,
    "is_template": false,
    "allow_forking": false,
    "has_issues": false,
    "has_discussions": false,
    "default_branch": "",
    "size": 0,
    "created_at": "",
    "updated_at": "",
    "pushed_at": "",
    "owner_alias": "",
    "owner_type": "",
    "owner_image": "<string>",
    "web_url": ""
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
repo
string
required

Repository in 'owner/name' format or full GitHub URL

Minimum string length: 1
Examples:

"anthropics/anthropic-sdk-python"

"https://github.com/torvalds/linux"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
@type
string
default:@github_repo
description
string | null
language
string | null
star_count
integer
default:0
fork_count
integer
default:0
open_issue_count
integer
default:0
watcher_count
integer
default:0
subscriber_count
integer
default:0
network_count
integer
default:0
topics
string[]
license
string | null
homepage
string | null
visibility
string
default:""
is_fork
boolean
default:false
is_archived
boolean
default:false
is_template
boolean
default:false
allow_forking
boolean
default:false
has_issues
boolean
default:false
has_discussions
boolean
default:false
default_branch
string
default:""
size
integer
default:0
created_at
string
default:""
updated_at
string
default:""
pushed_at
string
default:""
owner_alias
string
default:""
owner_type
string
default:""
owner_image
string | null
web_url
string
default:""