AltoIRA Handoffs API

These are the endpoints you will redirect your investors to (these are NOT api endpoints so you cannot use the Try it out tool)

Operations 2

GET /oauth/authorize Allows investor to approve access to his/her account
GET /offering/platform/{platform_code}/{external_id} Allows the user to complete the funding process

Documentation

Specifications

Other Resources

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/altoira-handoffs-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

altoira-handoffs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: AltoIRA.com Handoffs API
  contact:
    name: AltoIRA
    email: help@altoira.com
    url: https://www.altoira.com
  description: These are the endpoints you will redirect your investors to (these are NOT api endpoints so you cannot use the Try it out tool)
servers:
- url: https://altoira.sandbox.altoira.com
  description: Test API / Sandbox
- url: https://www.altoira.com
  description: Production API
tags:
- name: handoffs
  description: These are the endpoints you will redirect your investors to (these are NOT api endpoints so you cannot use the Try it out tool)
paths:
  /oauth/authorize:
    get:
      tags:
      - handoffs
      summary: Allows investor to approve access to his/her account
      description: Once access is approved by the investor, we will generate an auth "code" and send it back to your `redirect_uri` in a query string parameter named "code".
      parameters:
      - name: client_id
        in: query
        description: Alto Provided Code
        required: true
        schema:
          type: string
      - name: response_type
        in: query
        required: true
        description: Use "code"
        schema:
          type: string
          enum:
          - code
      - name: scope
        in: query
        required: false
        description: Not used. Leave this blank — Alto does not scope access; a token grants full access to the investor's account.
        schema:
          type: string
      - name: redirect_uri
        in: query
        required: true
        description: Must match what we have on file
        schema:
          type: string
      responses:
        '200':
          description: No response (you are redirecting the user to Alto's site)
  /offering/platform/{platform_code}/{external_id}:
    get:
      tags:
      - handoffs
      summary: Allows the user to complete the funding process
      description: Ensure that you have first enabled access to the Offering for this investor (see /api/platform/offering/{external_id}/enable_for_investor)
      parameters:
      - name: platform_code
        in: path
        required: true
        description: 'The code assigned to your account (ie: angellist)'
        schema:
          type: string
      - $ref: '#/components/parameters/external_id'
      responses:
        '200':
          description: No response (you are redirecting the user to Alto's site)
components:
  parameters:
    external_id:
      name: external_id
      example: '12345'
      in: path
      description: The ID you use internally to identify this Offering
      required: true
      schema:
        type: string
  securitySchemes:
    PlatformAuth:
      type: http
      scheme: basic
      description: Basic Auth credentials that were assigned to you by Alto
    UserAuth:
      type: http
      scheme: bearer
      description: 'Specify the OAuth token generated by calling /oauth/token. It will be used in the "Authorization: Bearer" header'
    UserOauth:
      type: oauth2
      description: Redirect your users to /oauth/authorize to get started (see the OAuth section on this documentation)
      flows:
        authorizationCode:
          authorizationUrl: https://altoira.sandbox.altoira.com/oauth/authorize
          tokenUrl: https://altoira.sandbox.altoira.com/oauth/token
          refreshUrl: https://altoira.sandbox.altoira.com/oauth/token/refresh
          scopes: {}
externalDocs:
  description: Webhooks
  url: https://altoira.sandbox.altoira.com/documents/webhooks.txt
x-readme:
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true