Neurable OIDC API

The OIDC API from Neurable — 2 operation(s) for oidc.

Operations 2

GET /.well-known/openid-configuration Get Well Known Openid Configuration #
GET /oidc/userinfo Get Userinfo #

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/neurable-oidc-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

neurable-oidc-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Neurable OIDC API
  version: 0.0.24
  description: 'Operations tagged OIDC across 2 of this provider''s published API definitions: neurable-oidc-api-openapi.yml, neurable-pipe-service-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://analytics-service.neurable.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: OIDC
paths:
  /.well-known/openid-configuration:
    get:
      tags:
      - OIDC
      summary: Get Well Known Openid Configuration
      description: OpenID Connect Discovery metadata for this authorization server.
      operationId: get_well_known_openid_configuration__well_known_openid_configuration_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenIDProviderMetadata'
    servers:
    - url: https://analytics-service.neurable.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /oidc/userinfo:
    get:
      tags:
      - OIDC
      summary: Get Userinfo
      description: OpenID Connect UserInfo endpoint.
      operationId: get_userinfo_oidc_userinfo_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUserInfoResponse'
    servers:
    - url: https://analytics-service.neurable.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    GetUserInfoResponse:
      properties:
        sub:
          type: string
          title: Sub
        email:
          anyOf:
          - type: string
          - type: 'null'
          title: Email
      type: object
      required:
      - sub
      title: GetUserInfoResponse
      description: 'OpenID Connect UserInfo response.


        See: https://openid.net/specs/openid-connect-core-1_0.html#UserInfoResponse'
    OpenIDProviderMetadata:
      properties:
        issuer:
          type: string
          title: Issuer
        authorization_endpoint:
          type: string
          title: Authorization Endpoint
        token_endpoint:
          type: string
          title: Token Endpoint
        userinfo_endpoint:
          type: string
          title: Userinfo Endpoint
        jwks_uri:
          type: string
          title: Jwks Uri
        scopes_supported:
          items:
            type: string
          type: array
          title: Scopes Supported
        response_types_supported:
          items:
            type: string
          type: array
          title: Response Types Supported
        grant_types_supported:
          items:
            type: string
          type: array
          title: Grant Types Supported
        subject_types_supported:
          items:
            type: string
          type: array
          title: Subject Types Supported
        id_token_signing_alg_values_supported:
          items:
            type: string
          type: array
          title: Id Token Signing Alg Values Supported
        token_endpoint_auth_methods_supported:
          items:
            type: string
          type: array
          title: Token Endpoint Auth Methods Supported
        code_challenge_methods_supported:
          items:
            type: string
          type: array
          title: Code Challenge Methods Supported
        claims_supported:
          items:
            type: string
          type: array
          title: Claims Supported
        claims_parameter_supported:
          type: boolean
          title: Claims Parameter Supported
      type: object
      required:
      - issuer
      - authorization_endpoint
      - token_endpoint
      - userinfo_endpoint
      - jwks_uri
      - scopes_supported
      - response_types_supported
      - grant_types_supported
      - subject_types_supported
      - id_token_signing_alg_values_supported
      - token_endpoint_auth_methods_supported
      - code_challenge_methods_supported
      - claims_supported
      - claims_parameter_supported
      title: OpenIDProviderMetadata
      description: 'OpenID Connect Discovery 1.0 provider metadata.


        Field names match the spec exactly (snake_case) so this serializes directly to a conformant

        ``/.well-known/openid-configuration`` document.


        See: https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata'
x-refined-from:
- neurable-oidc-api-openapi.yml
- neurable-pipe-service-openapi.yml