SourceForge Wikis API

Project wiki page management

Operations 3

GET /rest/p/{project}/{wiki} List Wiki Pages #
GET /rest/p/{project}/{wiki}/{title} Get Wiki Page #
POST /rest/p/{project}/{wiki}/{title} Create Or Update Wiki Page #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sourceforge-wikis-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sourceforge-wikis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SourceForge Allura Admin Wikis API
  description: The SourceForge REST API provides programmatic access to project management, wikis, issue trackers, discussions, blogs, and administrative functions. All endpoints are prefixed with /rest/ and follow the project tool path pattern. Supports OAuth 2.0 and OAuth 1.0 authentication.
  version: v1
  contact:
    name: SourceForge Support
    url: https://sourceforge.net/p/forge/documentation/API/
  license:
    name: Apache License 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://sourceforge.net
  description: SourceForge REST API
security:
- BearerAuth: []
tags:
- name: Wikis
  description: Project wiki page management
paths:
  /rest/p/{project}/{wiki}:
    get:
      operationId: listWikiPages
      summary: List Wiki Pages
      description: List all wiki pages for a project.
      tags:
      - Wikis
      parameters:
      - $ref: '#/components/parameters/ProjectId'
      - $ref: '#/components/parameters/WikiTool'
      responses:
        '200':
          description: List of wiki pages
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WikiPagesResponse'
        '404':
          description: Project or wiki not found
  /rest/p/{project}/{wiki}/{title}:
    get:
      operationId: getWikiPage
      summary: Get Wiki Page
      description: Retrieve a specific wiki page by title.
      tags:
      - Wikis
      parameters:
      - $ref: '#/components/parameters/ProjectId'
      - $ref: '#/components/parameters/WikiTool'
      - name: title
        in: path
        required: true
        description: Wiki page title
        schema:
          type: string
      responses:
        '200':
          description: Wiki page content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WikiPageResponse'
        '404':
          description: Wiki page not found
    post:
      operationId: createOrUpdateWikiPage
      summary: Create Or Update Wiki Page
      description: Create a new wiki page or update an existing one.
      tags:
      - Wikis
      parameters:
      - $ref: '#/components/parameters/ProjectId'
      - $ref: '#/components/parameters/WikiTool'
      - name: title
        in: path
        required: true
        description: Wiki page title
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/WikiPageRequest'
      responses:
        '200':
          description: Wiki page created or updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WikiPageResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized
components:
  schemas:
    WikiPagesResponse:
      type: object
      properties:
        pages:
          type: array
          items:
            $ref: '#/components/schemas/WikiPage'
    WikiPageRequest:
      type: object
      required:
      - text
      properties:
        text:
          type: string
          description: Wiki page content in Markdown or text format
        labels:
          type: string
          description: Comma-separated labels
    WikiPageResponse:
      type: object
      properties:
        title:
          type: string
        text:
          type: string
        labels:
          type: array
          items:
            type: string
        timestamp:
          type: string
          format: date-time
    WikiPage:
      type: object
      properties:
        title:
          type: string
        text:
          type: string
        labels:
          type: array
          items:
            type: string
        timestamp:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        author:
          type: string
  parameters:
    ProjectId:
      name: project
      in: path
      required: true
      description: Project shortname/identifier
      schema:
        type: string
    WikiTool:
      name: wiki
      in: path
      required: true
      description: Wiki tool mount point (e.g., wiki, docs)
      schema:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: OAuth2 Bearer token
    OAuth1:
      type: apiKey
      in: header
      name: Authorization
      description: OAuth 1.0 authorization header