Charthop saml API

The saml API from Charthop — 3 operation(s) for saml.

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/charthop-saml-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

charthop-saml-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access saml API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
host: localhost
schemes:
- https
- http
consumes:
- application/json
produces:
- application/json
tags:
- name: saml
paths:
  /saml/org/{orgId}/xml-cert:
    post:
      tags:
      - saml
      summary: Save per org Xml Cert from IDP
      operationId: uploadXmlCertificate
      consumes:
      - multipart/form-data
      produces:
      - application/json
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        type: string
      - name: idp
        in: query
        description: Identifier Provider
        required: true
        type: string
      - name: file
        in: formData
        required: false
        type: file
      responses:
        '400':
          description: invalid data
    get:
      tags:
      - saml
      summary: Save per org Xml Cert from IDP
      operationId: getXmlCertificate
      produces:
      - application/json
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        type: string
      - name: idp
        in: query
        description: Identifier Provider
        required: true
        type: string
      responses:
        '200':
          description: ok
          schema:
            type: string
        '400':
          description: invalid data
  /saml/sso/{org}:
    post:
      tags:
      - saml
      summary: Single sign on URL, where SAML assertion is perform
      operationId: sso
      consumes:
      - application/x-www-form-urlencoded
      produces:
      - application/xml
      parameters:
      - name: prevToken
        in: cookie
        required: false
        type: string
      - name: org
        in: path
        description: Org slug
        required: true
        type: string
      - name: SAMLResponse
        in: formData
        description: SAML Response
        required: true
        type: string
      - name: RelayState
        in: formData
        description: Relay State
        required: false
        type: string
      responses:
        '400':
          description: invalid data
  /saml/{org}/login:
    post:
      tags:
      - saml
      summary: Return an redirect to the designated Idp, given an identity provider
      operationId: redirectToIdp
      consumes:
      - application/x-www-form-urlencoded
      produces:
      - application/xml
      parameters:
      - name: org
        in: path
        description: Org slug
        required: true
        type: string
      - name: idp
        in: query
        description: Identifier Provider
        required: false
        type: string
      - name: clientId
        in: query
        description: clientId
        required: false
        type: string
      - name: codeChallenge
        in: query
        description: codeChallenge
        required: false
        type: string
      - name: codeChallengeMethod
        in: query
        description: codeChallengeMethod
        required: false
        type: string
      - name: redirectUri
        in: query
        description: redirectUri
        required: false
        type: string
      responses:
        '400':
          description: invalid data