SourceForge Discussion API

Forum and discussion thread management

Operations 3

GET /rest/p/{project}/{discussion} List Discussion Forums #
GET /rest/p/{project}/{discussion}/{forum} List Forum Topics #
GET /rest/p/{project}/{discussion}/{forum}/thread/{thread} List Thread Posts #

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-discussion-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-discussion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SourceForge Allura Admin Discussion 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: Discussion
  description: Forum and discussion thread management
paths:
  /rest/p/{project}/{discussion}:
    get:
      operationId: listForums
      summary: List Discussion Forums
      description: List all forums in the project discussion area.
      tags:
      - Discussion
      parameters:
      - $ref: '#/components/parameters/ProjectId'
      - name: discussion
        in: path
        required: true
        description: Discussion tool mount point
        schema:
          type: string
      responses:
        '200':
          description: List of forums
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForumsResponse'
  /rest/p/{project}/{discussion}/{forum}:
    get:
      operationId: listForumTopics
      summary: List Forum Topics
      description: Get topics in a specific discussion forum.
      tags:
      - Discussion
      parameters:
      - $ref: '#/components/parameters/ProjectId'
      - name: discussion
        in: path
        required: true
        schema:
          type: string
      - name: forum
        in: path
        required: true
        description: Forum identifier
        schema:
          type: string
      responses:
        '200':
          description: Forum topics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForumTopicsResponse'
  /rest/p/{project}/{discussion}/{forum}/thread/{thread}:
    get:
      operationId: listThreadPosts
      summary: List Thread Posts
      description: List all posts in a discussion thread.
      tags:
      - Discussion
      parameters:
      - $ref: '#/components/parameters/ProjectId'
      - name: discussion
        in: path
        required: true
        schema:
          type: string
      - name: forum
        in: path
        required: true
        schema:
          type: string
      - name: thread
        in: path
        required: true
        description: Thread identifier
        schema:
          type: string
      responses:
        '200':
          description: Thread posts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThreadPostsResponse'
components:
  schemas:
    Forum:
      type: object
      properties:
        name:
          type: string
        shortname:
          type: string
        description:
          type: string
        num_topics:
          type: integer
    ForumTopicsResponse:
      type: object
      properties:
        threads:
          type: array
          items:
            type: object
    ForumsResponse:
      type: object
      properties:
        forums:
          type: array
          items:
            $ref: '#/components/schemas/Forum'
    ThreadPostsResponse:
      type: object
      properties:
        posts:
          type: array
          items:
            type: object
  parameters:
    ProjectId:
      name: project
      in: path
      required: true
      description: Project shortname/identifier
      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