Verisoul Phone API

The Phone API from Verisoul — 1 operation(s) for phone.

Operations 1

POST /phone

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-phone-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-phone-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Verisoul Account Phone 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: Phone
paths:
  /phone:
    post:
      description: Verifies a phone number and returns carrier and line type information
      requestBody:
        description: Phone number to verify
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PhoneVerificationRequest'
        required: true
      responses:
        '200':
          description: Phone verification response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneVerificationResponse'
              example:
                project_id: 00000000-0000-0000-0000-000000000001
                request_id: d6c61d42-9f02-49a5-9773-7413788ea50e
                phone:
                  valid: true
                  phone_number: '+1234567890'
                  calling_country_code: '1'
                  country_code: US
                  carrier_name: Verizon Wireless
                  line_type: mobile
        '400':
          description: Invalid phone number
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneVerificationError'
              example:
                message: Invalid phone number
                statusCode: 400
      tags:
      - Phone
components:
  schemas:
    PhoneVerificationError:
      type: object
      properties:
        message:
          type: string
          description: Error message
        statusCode:
          type: integer
          description: HTTP status code
    PhoneVerificationRequest:
      type: object
      required:
      - phone_number
      properties:
        phone_number:
          type: string
          description: The phone number to verify
    PhoneVerificationResponse:
      type: object
      properties:
        project_id:
          type: string
          description: The ID of the project
        request_id:
          type: string
          description: The ID of the request
        phone:
          type: object
          properties:
            phone_number:
              type: string
              description: The formatted phone number
            calling_country_code:
              type: string
              description: The country calling code
            country_code:
              type: string
              description: The country code of the phone number
            carrier_name:
              type: string
              description: The carrier or service provider name
            line_type:
              type: string
              description: The type of phone line (mobile, landline, etc.)
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key