Skip to main content
POST
/
api
/
v1
/
projects
/
details
Get repositories details
curl --request POST \
  --url http://localhost:8080/api/v1/projects/details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "repo_ids": [
    123
  ]
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "full_name": "<string>",
    "description": "<string>",
    "language": "<string>",
    "languages": [
      "<string>"
    ],
    "owner": {
      "login": "<string>",
      "avatar_url": "<string>"
    },
    "html_url": "<string>",
    "stargazers_count": 123,
    "forks_count": 123,
    "fork": true,
    "size": 123,
    "topics": [
      "<string>"
    ],
    "open_issues_count": 123,
    "open_issues": 123,
    "open_prs": 123,
    "signal": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
repo_ids
integer<int64>[]
required

Response

List of repository details

id
integer<int64>
name
string
full_name
string
description
string
language
string
languages
string[]
owner
object
html_url
string
stargazers_count
integer
forks_count
integer
fork
boolean
size
integer
topics
string[]
open_issues_count
integer
open_issues
integer
open_prs
integer
signal
string

Project health signal (Healthy, Moderate, Abandoned)