Biogen Export API

Service and package export lookups across the Biogen non-production API estate

Operations 2

GET /serviceexp/np Export non-production API service #
GET /packageexp/np Export non-production API package #

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/biogen-export-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

biogen-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Biogen CDP API (Non-Production) Export API
  description: Machine-readable contract for the Biogen CDP-Export-API/Package service, published by Biogen on its Non-Production Developer Portal (developer1.biogen.com) as a Mashery/Boomi interactive-docs definition.
  version: '1'
  contact:
    name: Biogen Developer Portal
    url: https://developer1.biogen.com/io-docs
  license:
    name: Proprietary
    url: https://www.biogen.com/terms-and-conditions.html
  x-derived-from: https://developer1.biogen.com/swagger/export/23683 — the provider-published Mashery IODoc JSON definition, fetched 2026-09-04 (HTTP 200, application/json), archived verbatim at openapi/_original/biogen-cdp-export-api-iodoc.json. Every path, method, parameter, server and security scheme below is transcribed from that document; nothing was added.
  x-method: derived
servers:
- url: https://dev1.api.biogen.com
  description: Biogen non-production API gateway (basePath declared by the provider definition)
tags:
- name: Export
  description: Service and package export lookups across the Biogen non-production API estate
paths:
  /serviceexp/np:
    get:
      operationId: getServiceExportNonProd
      summary: Export non-production API service
      description: Service_EXP_np — returns the non-production export record for a Biogen API service. The Api_Name query parameter narrows the export to a named API; the provider definition marks it optional with an empty default.
      tags:
      - Export
      security:
      - apiKeyAuth: []
      parameters:
      - name: Api_Name
        in: query
        required: false
        description: Name of API
        schema:
          type: string
          default: ''
      responses:
        '200':
          description: Service export record. The provider definition declares no response schema.
        '403':
          description: Returned by the gateway when no valid x-api-key is presented. Observed live on an anonymous GET to https://dev1.api.biogen.com/serviceexp/np on 2026-09-04.
  /packageexp/np:
    get:
      operationId: getPackageExportNonProd
      summary: Export non-production API package
      description: Package_EXP_np — returns the non-production export record for a Biogen API package. The Package_Name query parameter narrows the export to a named package; the provider definition marks it optional with an empty default.
      tags:
      - Export
      security:
      - apiKeyAuth: []
      parameters:
      - name: Package_Name
        in: query
        required: false
        description: Name of Package
        schema:
          type: string
          default: ''
      responses:
        '200':
          description: Package export record. The provider definition declares no response schema.
        '403':
          description: Returned by the gateway when no valid x-api-key is presented. Observed live on an anonymous GET to https://dev1.api.biogen.com/serviceexp/np on 2026-09-04.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key issued through the Biogen developer portal. The provider definition declares auth.key with param "x-api-key" and location "header".