TYPO3 sitepackage API

The sitepackage API from TYPO3 — 1 operation(s) for sitepackage.

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/typo3-sitepackage-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 email required.

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

OpenAPI Specification

typo3-sitepackage-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: get.typo3.org Cache sitepackage API
  description: REST API for getting information about TYPO3 releases
  version: 1.0.0
security:
- Basic: []
tags:
- name: sitepackage
paths:
  /api/v1/sitepackage/:
    post:
      tags:
      - sitepackage
      operationId: post_app_api_sitepackage_createsitepackage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SitePackageType'
      responses:
        '200':
          description: Successfully generated.
          content:
            application/zip: {}
        '400':
          description: Request malformed.
components:
  schemas:
    AuthorType:
      required:
      - name
      - email
      - company
      - homepage
      properties:
        name:
          type: string
          example: J. Doe
        email:
          type: string
          example: info@typo3.com
        company:
          type: string
          example: TYPO3
        homepage:
          type: string
          example: https://typo3.com
      type: object
    SitePackageType:
      required:
      - base_package
      - typo3_version
      - title
      - author
      properties:
        base_package:
          type: string
          example: bootstrap_package
        typo3_version:
          type: float
          example: 14.3
        title:
          type: string
          example: My SitePackage
        description:
          type: string
          example: Project Configuration for Client
        repository_url:
          type: string
          example: https://github.com/FriendsOfTYPO3/introduction
        author:
          $ref: '#/components/schemas/AuthorType'
      type: object
  securitySchemes:
    Basic:
      type: http
      scheme: basic