Impact Radius Account API

The Account API from Impact Radius — 2 operation(s) for account.

Operations 2

POST /{tenant_alias}/accountsync Create or Update an account #
GET /{tenant_alias}/account/{accountId} Lookup an account #

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/impact-radius-account-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

impact-radius-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: impact.com REST Account API
  description: An account is the lowest-level structure in your programs used to organize participants.
  version: 3.1.0
servers:
- url: https://app.referralsaasquatch.com/api/v1
  description: Production Server
tags:
- name: Account
paths:
  /{tenant_alias}/accountsync:
    post:
      deprecated: true
      summary: Create or Update an account
      operationId: upsertAccount
      tags:
      - Account
      description: 'Use this method to update impact.com when the status of an account changes or when a new account is created.

        This call is only available on a classic program.

        '
      security:
      - APIKey: []
      parameters:
      - name: tenant_alias
        in: path
        required: true
        schema:
          type: string
        description: Tenant being referenced.
      requestBody:
        description: Account details to be created or updated.
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Account'
      responses:
        '200':
          description: Account created or updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Account'
        '403':
          description: Endpoint is deprecated and not available on non-classic programs.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      x-codeSamples:
      - lang: cURL
        source: "curl -L \\\n  --request POST \\\n  --url 'https://app.referralsaasquatch.com/api/v1/{tenant_alias}/accountsync' \\\n  --user '{AccountSID}:{AuthToken}' \\\n  --header 'Content-Type: application/json' \\\n  --header 'Accept: */*'"
  /{tenant_alias}/account/{accountId}:
    get:
      deprecated: true
      summary: Lookup an account
      operationId: getAccount
      tags:
      - Account
      description: 'Looks up an Account based upon `id` and returns the stored account information.

        This call is only available on a classic program.

        '
      security:
      - APIKey: []
      parameters:
      - name: tenant_alias
        in: path
        required: true
        schema:
          type: string
        description: Tenant being referenced. E.g. `"aboih12h16t"` or `"test_abo912126tastastt"`
      - name: accountId
        in: path
        required: true
        schema:
          type: string
        description: The `id` of the account to look up.
      responses:
        '200':
          description: Account found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Account'
        '403':
          description: Endpoint is deprecated and not available on non-classic programs.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Account NOT found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      x-codeSamples:
      - lang: cURL
        source: "curl -L \\\n  --url 'https://app.referralsaasquatch.com/api/v1/{tenant_alias}/account/{accountId}' \\\n  --user '{AccountSID}:{AuthToken}' \\\n  --header 'Accept: */*'"
components:
  schemas:
    Error:
      properties:
        statusCode:
          type: integer
          format: int32
          example: 404
          description: The HTTP status code of the error.
        message:
          type: string
          description: The human-readable description of what went wrong. Use this to help you debug.
        apiErrorCode:
          type: string
          description: A machine-readable error code.
        rsCode:
          type: string
          nullable: true
          description: A secondary machine-readable error code.
          example: RS042
    AccountReferral:
      properties:
        code:
          type: string
          example: BOBTESTERSON
    Account:
      required:
      - id
      - subscription
      properties:
        id:
          type: string
          description: Unique identifier for the account.
          example: abc123
        subscription:
          $ref: '#/components/schemas/AccountSubscription'
        referral:
          $ref: '#/components/schemas/AccountReferral'
        currency:
          type: string
          example: USD
          description: ISO 4217 standard currency code (e.g. `USD`, `EUR`).
    AccountSubscription:
      required:
      - status
      properties:
        status:
          type: string
          example: PAID
          enum:
          - PAID
          - TRIAL
          - FREE
          - CANCELLED
        billingIntervalType:
          type: string
          example: MONTH
          enum:
          - DAY
          - WEEK
          - MONTH
          - QUARTER
          - SEMI_ANNUAL
          - YEAR
        billingIntervalValue:
          type: integer
          example: 1
        value:
          type: number
          format: double
          example: 49.99
  securitySchemes:
    APIKey:
      type: http
      scheme: basic
x-default-client: cURL