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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/r-versions-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
openapi: 3.2.0
info:
title: Versions API
description: REST API providing the current and previous stable releases of R, including version numbers and release dates. Used by CI/CD tools, package managers, and build systems to determine supported R versions. Maintained by the METACRAN project.
version: 1.0.0
contact:
name: METACRAN
url: https://r-pkg.org
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
- url: https://rversions.r-pkg.org
description: R Versions API production server
tags:
- name: Versions
description: R release version information
paths:
/r-release:
get:
operationId: getRRelease
summary: Get Current R Release
description: Returns the current stable release of R, including the version number and release date.
tags:
- Versions
responses:
'200':
description: Current R release version
content:
application/json:
schema:
$ref: '#/components/schemas/RVersion'
/r-release-win:
get:
operationId: getRReleaseWindows
summary: Get Current R Release for Windows
description: Returns the current stable release of R for Windows, including version number and release date.
tags:
- Versions
responses:
'200':
description: Current R release version for Windows
content:
application/json:
schema:
$ref: '#/components/schemas/RVersion'
/r-release-macos:
get:
operationId: getRReleaseMacos
summary: Get Current R Release for macOS
description: Returns the current stable release of R for macOS, including version number and release date.
tags:
- Versions
responses:
'200':
description: Current R release version for macOS
content:
application/json:
schema:
$ref: '#/components/schemas/RVersion'
/r-oldrel:
get:
operationId: getROldrel
summary: Get Previous R Release
description: Returns the previous stable release of R (oldrel), useful for testing backward compatibility in CI pipelines.
tags:
- Versions
responses:
'200':
description: Previous R release version
content:
application/json:
schema:
$ref: '#/components/schemas/RVersion'
/r-versions:
get:
operationId: listRVersions
summary: List All R Versions
description: Returns all historical R releases including version numbers, release dates, and nicknames.
tags:
- Versions
responses:
'200':
description: List of all R versions
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RVersionDetail'
components:
schemas:
RVersionDetail:
type: object
properties:
version:
type: string
description: R version number
example: 4.4.2
date:
type: string
format: date
description: Release date
example: '2024-10-31'
nickname:
type: string
description: R release nickname
example: Pile of Leaves
RVersion:
type: object
properties:
version:
type: string
description: R version number
example: 4.4.2
date:
type: string
format: date
description: Release date
example: '2024-10-31'
nickname:
type: string
description: R release nickname
example: Pile of Leaves