UserGems Accounts API

Add and remove accounts UserGems should source prospects against.

Operations 2

POST /account Add Account #
DELETE /account Delete Account #

Documentation

Specifications

Schemas & Data

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/usergems-accounts-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

usergems-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: UserGems Accounts API
  description: 'The UserGems API lets customers programmatically add contacts to track for job

    changes and add accounts to receive prospects for. It also exposes a privacy

    delete endpoint used to honor data-subject removal requests. Requests are

    authenticated with a customer-issued API key sent in the X-Api-Key header and

    are processed asynchronously — responses confirm enqueueing, not completion.

    '
  version: 1.0.0
  contact:
    name: UserGems
    url: https://www.usergems.com
    email: support@usergems.com
  license:
    name: UserGems Terms of Service
    url: https://www.usergems.com/legal-security/terms
servers:
- url: https://api.usergems.com/v1
  description: Production
security:
- ApiKeyAuth: []
tags:
- name: Accounts
  description: Add and remove accounts UserGems should source prospects against.
paths:
  /account:
    post:
      summary: Add Account
      description: 'Enqueue an account so UserGems sources prospects against it. Accounts are

        identified by the (name, domain) pair; optional fields associate the

        account with a Salesforce ID, a custom ID, a report name, and a signal

        label so prospects can be routed back to the right workflow.

        '
      operationId: addAccount
      tags:
      - Accounts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddAccountRequest'
            examples:
              AddAccountExample:
                $ref: '#/components/examples/AddAccountExample'
      responses:
        '200':
          description: Account added.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueueAck'
              examples:
                AddAccountAck:
                  $ref: '#/components/examples/AddAccountAck'
        4XX:
          $ref: '#/components/responses/ErrorResponse'
        5XX:
          $ref: '#/components/responses/ErrorResponse'
    delete:
      summary: Delete Account
      description: 'Remove a previously added account. Identified by (name, domain); the

        optional reportName, signal, salesforceId, and customId fields scope the

        deletion to a specific routing context.

        '
      operationId: deleteAccount
      tags:
      - Accounts
      parameters:
      - name: name
        in: query
        required: true
        description: Account name as previously submitted.
        schema:
          type: string
      - name: domain
        in: query
        required: true
        description: Primary domain for the account.
        schema:
          type: string
      - name: reportName
        in: query
        required: false
        description: Report or workflow grouping the account belongs to.
        schema:
          type: string
      - name: signal
        in: query
        required: false
        description: Signal label originally attached to the account.
        schema:
          type: string
      - name: salesforceId
        in: query
        required: false
        description: Salesforce Account ID for cross-reference.
        schema:
          type: string
      - name: customId
        in: query
        required: false
        description: Customer-supplied identifier for cross-reference.
        schema:
          type: string
      responses:
        '200':
          description: Account deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueueAck'
              examples:
                DeleteAccountAck:
                  $ref: '#/components/examples/DeleteAccountAck'
        4XX:
          $ref: '#/components/responses/ErrorResponse'
        5XX:
          $ref: '#/components/responses/ErrorResponse'
components:
  examples:
    AddAccountAck:
      summary: Account accepted
      value:
        message: Account added
    AddAccountExample:
      summary: Add a target account
      value:
        reportId: '12345'
        name: Acme Inc
        domain: acme.com
        signal: hiring-vp-sales
        salesforceId: 0014x00000ABCDeAAA
    DeleteAccountAck:
      summary: Account removed
      value:
        message: Account deleted
  responses:
    ErrorResponse:
      description: Error response. UserGems returns standard HTTP status codes (400, 401, 403, 404, 405, 406, 410, 429, 500, 503).
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      required:
      - message
      properties:
        message:
          type: string
          description: Human-readable error message.
        code:
          type: string
          description: Optional machine-readable error code.
    QueueAck:
      type: object
      required:
      - message
      properties:
        message:
          type: string
          description: Human-readable confirmation message.
    AddAccountRequest:
      type: object
      required:
      - name
      - domain
      - reportId
      properties:
        name:
          type: string
          description: Account name (display name of the target company).
        domain:
          type: string
          description: Primary domain for the target company (e.g. example.com). This is the matching key UserGems dedupes accounts on.
        reportId:
          type: string
          description: 'Id of the report the account should be added to. Required in practice: the Developer Hub reference lists it as optional, but the UserGems Help Center states that omitting it fails with HTTP 422. Source: https://help.usergems.com/article/using-the-usergems-api'
        reportName:
          type: string
          description: 'Report or workflow grouping the account belongs to. Note the asymmetry documented by UserGems: adding an account uses reportId, deleting one uses reportName.'
        signal:
          type: string
          description: Signal label to associate with prospects routed for this account.
        salesforceId:
          type: string
          description: Salesforce Account ID for cross-reference.
        customId:
          type: string
          description: Customer-supplied identifier for cross-reference.
        custom:
          type: string
          description: Free-form custom metadata to round-trip with downstream events.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: 'Customer-issued API key. Request a key from support@usergems.com. The

        key must be included on every request in the X-Api-Key header.

        '