Verisoul List API

The List API from Verisoul — 3 operation(s) for list.

Operations 6

GET /list
GET /list/{list_name}
POST /list/{list_name}
DELETE /list/{list_name}
POST /list/{list_name}/account/{account_id}
DELETE /list/{list_name}/account/{account_id}

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/verisoul-list-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

verisoul-list-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Verisoul Account List API
  description: The Verisoul API is used to integrate Verisoul into your application.
  license:
    name: MIT
  version: 1.0.0
servers:
- url: https://api.sandbox.verisoul.ai
security:
- apiKeyAuth: []
tags:
- name: List
paths:
  /list:
    get:
      description: Returns all available lists
      responses:
        '200':
          description: Lists response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListsResponse'
              example:
                request_id: abb42d71-f4d4-440f-b1c7-a250ec0eddd7
                lists:
                - name: allow
                  description: Marks every account in the list as Real.
                - name: block
                  description: Marks every account in the list as Fake.
                - name: main_account
                  description: Sets the multiple_accounts score to 0 for every account in the list.
                - name: us_users
                  description: List of US based users
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - List
  /list/{list_name}:
    get:
      description: Returns all accounts in a specific list
      parameters:
      - name: list_name
        in: path
        description: Name of the list to retrieve accounts from
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List accounts response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAccountsResponse'
              example:
                request_id: bb152ba5-8311-4192-846f-1670a581becb
                description: List of US based users
                accounts:
                - john-doe
                - john-doe-2
                - amy-williams
                - frank-smith
                - mark-johnson
        '400':
          description: List not found or invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateListError'
              example:
                message: List not found
                statusCode: 400
      tags:
      - List
    post:
      description: Creates a new list with the specified name
      parameters:
      - name: list_name
        in: path
        description: Name of the list to create
        required: true
        schema:
          type: string
      requestBody:
        description: List information
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateListRequest'
        required: true
      responses:
        '200':
          description: List creation response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateListResponse'
              example:
                request_id: 83310a37-aec5-4aa5-8e1b-edf4916128ae
                message: List us_users created
                success: true
        '400':
          description: List already exists or invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateListError'
              example:
                message: List already exists.
                statusCode: 400
      tags:
      - List
    delete:
      description: Deletes a list with the specified name
      parameters:
      - name: list_name
        in: path
        description: Name of the list to delete
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List deletion response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteListResponse'
              example:
                request_id: 2346a2b9-7954-480a-9966-612246e05a20
                message: List us_users deleted
                success: true
        '400':
          description: List not found or invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateListError'
              example:
                message: List not found.
                statusCode: 400
      tags:
      - List
  /list/{list_name}/account/{account_id}:
    post:
      description: Adds an account to a specific list
      parameters:
      - name: list_name
        in: path
        description: Name of the list to add the account to
        required: true
        schema:
          type: string
      - name: account_id
        in: path
        description: ID of the account to add to the list
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Account added to list response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddAccountToListResponse'
              example:
                request_id: d4b6b99f-f2ad-458e-bfc4-7b4c81e3ac36
                message: Account added to us_users
                success: true
        '400':
          description: Account or list not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateListError'
              example:
                message: Account not found.
                statusCode: 400
      tags:
      - List
    delete:
      description: Removes an account from a specific list
      parameters:
      - name: list_name
        in: path
        description: Name of the list to remove the account from
        required: true
        schema:
          type: string
      - name: account_id
        in: path
        description: ID of the account to remove from the list
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Account removed from list response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoveAccountFromListResponse'
              example:
                request_id: 2346a2b9-7954-480a-9966-612246e05a20
                message: Account removed from us_users
                success: true
        '400':
          description: Account or list not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateListError'
              example:
                message: Account not found.
                statusCode: 400
      tags:
      - List
components:
  schemas:
    CreateListResponse:
      type: object
      properties:
        request_id:
          type: string
          description: The ID of the request
        message:
          type: string
          description: Success message
        success:
          type: boolean
          description: Whether the operation was successful
    CreateListRequest:
      type: object
      properties:
        list_description:
          type: string
          description: Description of the list's purpose
    ListAccountsResponse:
      type: object
      properties:
        request_id:
          type: string
          description: The ID of the request
        description:
          type: string
          description: Description of the list's purpose
        accounts:
          type: array
          items:
            type: string
          description: Array of account IDs in the list
    DeleteListResponse:
      type: object
      properties:
        request_id:
          type: string
          description: The ID of the request
        message:
          type: string
          description: Success message
        success:
          type: boolean
          description: Whether the operation was successful
    List:
      type: object
      properties:
        name:
          type: string
          description: The name of the list
        description:
          type: string
          description: Description of the list's purpose
    AddAccountToListResponse:
      type: object
      properties:
        request_id:
          type: string
          description: The ID of the request
        message:
          type: string
          description: Success message
        success:
          type: boolean
          description: Whether the operation was successful
    Error:
      required:
      - error
      - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
    RemoveAccountFromListResponse:
      type: object
      properties:
        request_id:
          type: string
          description: The ID of the request
        message:
          type: string
          description: Success message
        success:
          type: boolean
          description: Whether the operation was successful
    ListsResponse:
      type: object
      properties:
        request_id:
          type: string
          description: The ID of the request
        lists:
          type: array
          items:
            $ref: '#/components/schemas/List'
          description: Array of available lists
    CreateListError:
      type: object
      properties:
        message:
          type: string
          description: Error message
        statusCode:
          type: integer
          description: HTTP status code
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key