List GitHub projects

GET
/api/portfolio/projects

Returns a curated list of my GitHub repositories. Only repositories with a recognised description format are included; results are ordered by display priority, then creation date. Use the unfiltered query parameter to return all public repositories without filtering.

Query Parameters

unfiltered?string

When set to true, returns all public GitHub repositories without filtering by description format. Useful for getting the total repo count.

Default"false"
Value in"true" | "false"

Response Body

application/json

application/json

application/json

curl -X GET "https://loading/api/portfolio/projects"
[
  {
    "title": "string",
    "raw_name": "string",
    "description": "string",
    "raw_description": "string",
    "homepage": "string",
    "html_url": "http://example.com",
    "fork": true,
    "created_at": "2019-08-24T14:15:22Z",
    "language": "string",
    "stargazers_count": 0,
    "watchers_count": 0,
    "default_branch": "string",
    "priority": 0,
    "is_university_project": true,
    "working_on": true,
    "default_image_url": "http://example.com",
    "thumbnails": [
      "http://example.com"
    ]
  }
]
{
  "error": "string"
}
{
  "error": "string"
}