MINE Partners API

The Partners API from MINE — 2 operation(s) for partners.

Operations 2

POST /api/Partners/ActivateAccount Create a new account
GET /api/Partners/AccountInfo Gets account information

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/mine-partners-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

mine-partners-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MineOS Aispm Partners API
  version: v1.0
servers:
- url: https://api.portal.saymine.com/
  description: MineOS EU API Endpoint
- url: https://api.us.portal.saymine.com/
  description: MineOS US API Endpoint
security:
- Bearer: []
tags:
- name: Partners
paths:
  /api/Partners/ActivateAccount:
    post:
      tags:
      - Partners
      summary: Create a new account
      description: "Creating an account results in an invite being sent to the email address in the request.\n            If the company already has an account, the request will be denied."
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/ActivationRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/ActivationRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/ActivationRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ActivationRequest'
      responses:
        '200':
          description: Returns the newly created account ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivationResponse'
        '400':
          description: The request contains an invalid parameter
        '401':
          description: The request is not authenticated properly
        '409':
          description: The domain already has a company assigned to it
  /api/Partners/AccountInfo:
    get:
      tags:
      - Partners
      summary: Gets account information
      description: A partner can only get information for accounts he is allowed to. Partners are automatically allowed to account created by them.
      parameters:
      - name: accountId
        in: query
        description: The ID of the account to get information for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the information for the account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoResponse'
        '400':
          description: The request contains an invalid parameter
        '401':
          description: The request is not authenticated properly
        '403':
          description: The partner is not authorized to access the account ID or it does not exist
components:
  schemas:
    InfoResponse:
      type: object
      properties:
        privacyCenterUrl:
          type:
          - string
          - 'null'
          description: Privacy Center URL
          example: https://acmecorp.saymine.io/acmecorp
        users:
          type: integer
          description: Number of users with access to the account.
          format: int32
          example: 1
        closedRequests:
          type: integer
          description: Total number of already handled requests.
          format: int32
          example: 10
        openRequests:
          type: integer
          description: Total number of currently open requests that need to be handled.
          format: int32
          example: 3
      additionalProperties: false
    ActivationRequest:
      required:
      - companyName
      - domains
      - userEmail
      type: object
      properties:
        userEmail:
          minLength: 1
          type: string
          description: 'Email address of the first user to have access to the new account.

            the email address provided must be a business account (not a free domain like gmail/outlook/...)'
          example: johndoe@acmecorp.com
        companyName:
          minLength: 1
          type: string
          description: Name of the company for which the account is created.
          example: Acme Corp
        cmpProductId:
          type:
          - string
          - 'null'
          description: 'Optional: If the customer for which the account is being created has a CMP solution, insert its product ID here so it will be linked from the platform. If you are not sure the product ID of you CMP solution, reach out to us.'
        domains:
          type: array
          items:
            type: string
          description: A list of website domains that are used by the customer for which the account is being created. At least one is required.
      additionalProperties: false
    ActivationResponse:
      type: object
      properties:
        accountId:
          type:
          - string
          - 'null'
          description: Account ID of the newly created account.
          example: 8d78993b-73ac-4fa1-a3d3-a8fca7a061c7
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: "Authorization header using the Bearer scheme. \n\nEnter 'Bearer' [space] and then your API Key in the text input below.\n\nExample: 'Bearer 12345abcdef'"
      name: Authorization
      in: header