Skip to main content
POST
/
api
/
github
/
orgs
/
repos
/github/orgs/repos
curl --request POST \
  --url https://api.anysite.io/api/github/orgs/repos \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "org": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "@type": "@github_repo_list_item",
    "description": "<string>",
    "language": "<string>",
    "star_count": 0,
    "fork_count": 0,
    "open_issue_count": 0,
    "watcher_count": 0,
    "topics": [],
    "license": "<string>",
    "homepage": "<string>",
    "visibility": "",
    "is_fork": false,
    "is_archived": false,
    "is_template": false,
    "is_private": 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": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
org
string
required

Organization login

Minimum string length: 1
Examples:

"github"

"google"

count
integer
required

Number of repositories to return

Required range: x >= 1
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_list_item
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
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
is_private
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:""