Netlify sniCertificate API

The sniCertificate API from Netlify — 1 operation(s) for snicertificate.

Operations 3

POST /sites/{site_id}/ssl #
GET /sites/{site_id}/ssl #
GET /sites/{site_id}/ssl/certificates #

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/netlify-snicertificate-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

netlify-snicertificate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Netlify Sni Certificate API
  termsOfService: https://www.netlify.com/legal/terms-of-use/
  x-logo:
    url: netlify-logo.png
    href: https://www.netlify.com/docs/
    altText: Netlify
  version: '1.0'
  description: 'Operations tagged sniCertificate across 2 of this provider''s published API definitions: netlify-openapi-2.57.0-swagger.json, netlify-snicertificate-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.netlify.com/api/v1
security:
- netlifyAuth: []
tags:
- name: sniCertificate
  x-displayName: SNI certificate
paths:
  /sites/{site_id}/ssl:
    servers:
    - url: https://api.netlify.com/api/v1
    post:
      operationId: provisionSiteTLSCertificate
      tags:
      - sniCertificate
      description: 'Provisions or updates a TLS certificate for the site.


        **Creating a certificate (site has no certificate):**

        - Omit certificate params to initiate Let''s Encrypt provisioning

        - Provide certificate, key, and ca_certificates to upload a custom certificate


        **Updating a certificate (site already has a certificate):**

        - REQUIRES certificate, key, and ca_certificates to replace with a new custom certificate

        - Use POST /api/v1/sites/{site_id}/ssl/renew to renew an existing Let''s Encrypt certificate'
      parameters:
      - name: site_id
        in: path
        required: true
        schema:
          type: string
      - name: certificate
        in: query
        description: PEM-encoded certificate. Required when updating an existing certificate.
        schema:
          type: string
      - name: key
        in: query
        description: PEM-encoded private key. Required when updating an existing certificate.
        schema:
          type: string
      - name: ca_certificates
        in: query
        description: PEM-encoded CA certificate chain. Required when updating an existing certificate.
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  state:
                    type: string
                  domains:
                    type: array
                    items:
                      type: string
                  created_at:
                    type: string
                    format: dateTime
                  updated_at:
                    type: string
                    format: dateTime
                  expires_at:
                    type: string
                    format: dateTime
        '422':
          description: 'Unprocessable Entity. Returns errors such as: "certificate parameter is required when updating an existing certificate" (when updating without params), "No custom domain configured", or "bad dns for custom domain"'
        default:
          description: error
          content:
            application/json:
              schema:
                type: object
                required:
                - message
                properties:
                  code:
                    type: integer
                    format: int64
                  message:
                    type: string
    get:
      operationId: showSiteTLSCertificate
      tags:
      - sniCertificate
      parameters:
      - name: site_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  state:
                    type: string
                  domains:
                    type: array
                    items:
                      type: string
                  created_at:
                    type: string
                    format: dateTime
                  updated_at:
                    type: string
                    format: dateTime
                  expires_at:
                    type: string
                    format: dateTime
        default:
          description: error
          content:
            application/json:
              schema:
                type: object
                required:
                - message
                properties:
                  code:
                    type: integer
                    format: int64
                  message:
                    type: string
  /sites/{site_id}/ssl/certificates:
    servers:
    - url: https://api.netlify.com/api/v1
    get:
      operationId: getAllCertificates
      tags:
      - sniCertificate
      parameters:
      - name: site_id
        in: path
        required: true
        schema:
          type: string
      - name: domain
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Array of SNI Certificates
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    state:
                      type: string
                    domains:
                      type: array
                      items:
                        type: string
                    created_at:
                      type: string
                      format: dateTime
                    updated_at:
                      type: string
                      format: dateTime
                    expires_at:
                      type: string
                      format: dateTime
        '404':
          description: Not Found
        '422':
          description: Unprocessable Entity
components:
  securitySchemes:
    netlifyAuth:
      type: oauth2
      flows:
        implicit:
          scopes: {}
          authorizationUrl: https://app.netlify.com/authorize
externalDocs:
  url: https://www.netlify.com/docs/api/
  description: Online documentation
x-refined-from:
- netlify-openapi-2.57.0-swagger.json
- netlify-snicertificate-api-openapi.yml
x-tagGroups:
- name: OAuth
  tags:
  - ticket
  - accessToken
- name: User accounts
  tags:
  - user
  - accountMembership
  - member
  - accountType
  - paymentMethod
  - auditLog
- name: Site
  tags:
  - site
  - environmentVariables
  - file
  - metadata
  - purge
  - snippet
- name: Domain names
  tags:
  - dnsZone
  - sniCertificate
- name: Deploys
  tags:
  - deploy
  - deployedBranch
  - deployKey
- name: Builds
  tags:
  - build
  - buildLogMsg
- name: Dev servers
  tags:
  - devServer
- name: Webhooks and notifications
  tags:
  - hook
  - hookType
  - buildHook
  - devServerHook
- name: Services
  tags:
  - service
  - serviceInstance
- name: Functions
  tags:
  - function
- name: Forms
  tags:
  - form
  - submission
- name: Split tests
  tags:
  - splitTest
- name: Large media
  tags:
  - asset
  - assetPublicSignature
x-original-swagger-version: '2.0'