The Guardian Sections API

Browse Guardian sections

Operations 1

GET /sections List all sections #

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/guardian-sections-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

guardian-sections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Guardian Content Sections API
  description: The Guardian's Open Platform Content API provides free access to all content published on theguardian.com. Search for articles, browse sections and tags, retrieve specific content items, and access edition-specific content. Supports filtering by date, section, tag, and more.
  version: 2.0.0
  contact:
    name: The Guardian Open Platform
    url: https://open-platform.theguardian.com/
  termsOfService: https://open-platform.theguardian.com/access/
  x-jentic-source-url: https://open-platform.theguardian.com/
servers:
- url: https://content.guardianapis.com
  description: Guardian Content API Production Server
security:
- apiKeyQuery: []
tags:
- name: Sections
  description: Browse Guardian sections
paths:
  /sections:
    get:
      operationId: getSections
      summary: List all sections
      description: Retrieve all Guardian sections. Sections represent the major content categories like News, Sport, Culture, etc.
      tags:
      - Sections
      parameters:
      - name: q
        in: query
        description: Search query for section names
        schema:
          type: string
      responses:
        '200':
          description: Successful response with sections
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SectionsResponse'
components:
  schemas:
    SectionsResponse:
      type: object
      properties:
        response:
          type: object
          properties:
            status:
              type: string
            userTier:
              type: string
            total:
              type: integer
            results:
              type: array
              items:
                $ref: '#/components/schemas/Section'
    Section:
      type: object
      properties:
        id:
          type: string
        webTitle:
          type: string
        webUrl:
          type: string
          format: uri
        apiUrl:
          type: string
          format: uri
        editions:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              webTitle:
                type: string
              webUrl:
                type: string
                format: uri
              apiUrl:
                type: string
                format: uri
              code:
                type: string
  securitySchemes:
    apiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: API key obtained from https://open-platform.theguardian.com/access/. A test key 'test' is available for development.