Aaron's Create Session API

The Create Session API from Aaron's — 1 operation(s) for create session.

Operations 4

GET /CreateSession/2 Create session2 get #
PUT /CreateSession/2 Create session2 create #
POST /CreateSession/2 Create session2 post #
DELETE /CreateSession/2 Create session2 delete #

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/aarons-create-session-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

aarons-create-session-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HPP Create Session API
  version: '1.0'
servers:
- url: https://hpp.aarons.com/
tags:
- name: Create Session
paths:
  /CreateSession/2:
    parameters:
    - $ref: '#/components/parameters/Accept'
    get:
      tags:
      - Create Session
      operationId: CreateSession2_Get
      parameters:
      - name: SessionItem
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSessionResponse'
      deprecated: false
      security:
      - Bearer: []
      summary: Create session2 get
      x-summary-source: derived
    put:
      tags:
      - Create Session
      operationId: CreateSession2_Create
      parameters:
      - name: SessionItem
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSessionResponse'
      deprecated: false
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSession'
      summary: Create session2 create
      x-summary-source: derived
    post:
      tags:
      - Create Session
      operationId: CreateSession2_Post
      parameters:
      - name: SessionItem
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSessionResponse'
      deprecated: false
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSession'
      summary: Create session2 post
      x-summary-source: derived
    delete:
      tags:
      - Create Session
      operationId: CreateSession2_Delete
      parameters:
      - name: SessionItem
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateSessionResponse'
      deprecated: false
      security:
      - Bearer: []
      summary: Create session2 delete
      x-summary-source: derived
components:
  schemas:
    CreateSessionResponse:
      title: CreateSessionResponse
      properties:
        SessionGuid:
          type: string
        Version:
          type: integer
          format: int32
        ExpiresAt:
          type: string
          format: date-time
      description: CreateSessionResponse
      type: object
    SessionItem:
      title: SessionItem
      properties:
        ApplicationId:
          type: integer
          format: int32
        BearerToken:
          type: string
        ButtonText:
          type: string
        DisplaySaveOnFile:
          type: boolean
        EmailAddress:
          type: string
        ExpiresAt:
          type: string
          format: date-time
        GCID:
          type: string
        Lang:
          type: string
        LangBuster:
          type: boolean
        SaveOnFile:
          type: boolean
        Store:
          type: string
        TokenGuid:
          type: string
      description: SessionItem
      type: object
    CreateSession:
      title: CreateSession
      properties:
        SessionItem:
          $ref: '#/components/schemas/SessionItem'
      description: CreateSession
      type: object
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
        - application/json
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header