Skip to content

Commit a8edd61

Browse files
committed
Fix build
1 parent 52c3153 commit a8edd61

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

docs/api/overview.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ sidebar_position: 1
44

55
# API Overview
66

7-
Endpoints:
8-
- /repositories
9-
- /repositories/{owner}/{repo}
10-
- /universities
11-
- /languages
7+
Available endpoints:
8+
- GET /repositories - List repositories with filtering
9+
- GET /universities - List available universities
10+
- GET /languages - List available programming languages
11+
- GET /licenses - List available licenses
12+
- GET /topics - List available topic areas
1213

13-
All endpoints are GET and return JSON.
14+
All endpoints return JSON and only show approved repositories.

docs/api/repositories.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,20 @@ sidebar_position: 2
44

55
# Repositories API
66

7-
## List Repositories
8-
GET /repositories
9-
- Query: q, university, language, license, owner, limit, offset
10-
- Returns: Array of repositories
11-
12-
## Get Repository Details
13-
GET /repositories/{owner}/{repo}
14-
- Returns: Single repository object
7+
## GET /repositories
8+
9+
List repositories with optional filtering and sorting.
10+
11+
**Query Parameters:**
12+
- `q` - Search term for name/description
13+
- `university` - University filter
14+
- `language` - Programming language filter
15+
- `license` - License filter
16+
- `owner` - Owner filter
17+
- `topic_area_ai` - Topic area filter
18+
- `sort` - Sort field (stargazers_count, forks_count, created_at)
19+
- `order` - Sort order (asc, desc)
20+
- `limit` - Result limit (1-100)
21+
- `offset` - Result offset
22+
23+
**Returns:** Array of repository objects with metadata, contact info, and funding details.

0 commit comments

Comments
 (0)