Abound TIN Verifications API

The TIN Verifications API from Abound — 2 operation(s) for tin verifications.

Operations 3

GET /v4/tin-verifications List all TIN Verifications #
POST /v4/tin-verifications Create a TIN Verification #
GET /v4/tin-verifications/{tinVerificationId} Retrieve a TIN Verification #

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/abound-tin-verifications-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

abound-tin-verifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Abound API - v4 TIN Verifications API
  version: '4'
  description: 'Abound was a US tax-compliance API for platforms and marketplaces: W-9 / W-8BEN / W-8BEN-E collection, real-time TIN verification against the IRS, and generation, filing, correction, voiding and physical mailing of Form 1099-NEC, 1099-MISC, 1099-K and 1099-INT with federal and state tax authorities.


    NOTE: This document is a mechanical conversion of the first-party Fern API Definition that Abound shipped inside its official npm package @withabound/node-sdk (v6.0.68). Abound was acquired and the service has been retired: the withabound.com DNS zone is fully de-delegated and the API hosts no longer resolve. This spec is preserved as a historical record of the API surface.'
  x-status: retired
servers:
- url: https://production-api.withabound.com
  description: Production (retired - host no longer resolves)
- url: https://sandbox-api.withabound.com
  description: Sandbox (retired - host no longer resolves)
security:
- bearerAuth: []
tags:
- name: TIN Verifications
paths:
  /v4/tin-verifications:
    get:
      operationId: tinVerificationsList
      tags:
      - TIN Verifications
      summary: List all TIN Verifications
      description: Returns a list of TIN Verifications. Up to 100 TIN Verifications are returned per request.
      parameters:
      - name: page
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/Page'
      - name: tinFingerprint
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/TinFingerprintQueryParam'
      - name: status
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/TinVerificationStatusQueryParam'
      - name: userId
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/UserId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TinVerificationSchema'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBadRequestSchema'
              example:
                errors:
                - field: metadata.key
                  message: Expected metadata.key to be of type string, but received number
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Internal Server Error
    post:
      operationId: tinVerificationsCreate
      tags:
      - TIN Verifications
      summary: Create a TIN Verification
      description: Creates an asynchronous TIN Verification.
      parameters:
      - name: Idempotency-Key
        in: header
        required: false
        schema:
          $ref: '#/components/schemas/IdempotencyKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TinVerificationRequestSchema'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TinVerificationSchema'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBadRequestSchema'
              example:
                errors:
                - field: metadata.key
                  message: Expected metadata.key to be of type string, but received number
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Internal Server Error
  /v4/tin-verifications/{tinVerificationId}:
    get:
      operationId: tinVerificationsRetrieve
      tags:
      - TIN Verifications
      summary: Retrieve a TIN Verification
      description: Retrieves the details of an existing TIN Verification.
      parameters:
      - name: tinVerificationId
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/TinVerificationId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TinVerificationSchema'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBadRequestSchema'
              example:
                errors:
                - field: metadata.key
                  message: Expected metadata.key to be of type string, but received number
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DefaultErrorSchema'
              example:
                message: Internal Server Error
components:
  schemas:
    ErrorBadRequestSchema:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ErrorBadRequestSchemaErrorsItem'
          description: The error message(s) associated with the response status code.
      required:
      - errors
    ErrorBadRequestSchemaErrorsItem:
      type: object
      properties:
        field:
          type: string
          description: The field that caused the error.
        message:
          type: string
          description: The error message associated with the field.
      required:
      - message
    IdempotencyKey:
      type: string
      description: The unique key used to identify a request that has already been processed.
    Page:
      type: integer
      description: The specific page of results you're requesting. Responses are limited to a maximum of 100 records.
    TinTypeEnum:
      type: string
      enum:
      - INDIVIDUAL
      - BUSINESS
      description: The type of the TIN. `INDIVIDUAL` refers to SSNs, ITINs, or ATINs. While `BUSINESS` refers to EINs.
    DefaultErrorSchema:
      type: object
      properties:
        message:
          type: string
          description: The error message associated with the response status code.
      required:
      - message
    TinVerificationRequestSchema:
      type: object
      properties:
        name:
          type: string
          description: The legal name (first + last) or business name.
        tin:
          type: string
          description: The tax identification number, commonly referred to as a TIN. No hyphens. Numerical digits only.
          minLength: 9
          maxLength: 9
        userId:
          $ref: '#/components/schemas/UserId'
      required:
      - name
      - tin
      examples:
      - name: Ada Lovelace
        tin: '000000000'
    TinVerificationStatusEnum:
      type: string
      enum:
      - MATCH
      - MISMATCH
      - PENDING
      description: The status of the TIN Verification.
    TinVerificationStatusQueryParam:
      type: string
      description: Filters the list of TIN Verifications based on the `status` field.
    UserId:
      type: string
      description: The unique identifier for a single end-user of your application.
    TinVerificationSchema:
      allOf:
      - $ref: '#/components/schemas/TinVerificationRequestSchema'
      - type: object
        properties:
          id:
            type: string
            description: The unique identifier for this TIN Verification.
          createdAt:
            type: string
            format: date-time
            description: The creation date and time of the TIN Verification in `ISO 8601` format.
          status:
            $ref: '#/components/schemas/TinVerificationStatusEnum'
          tinType:
            $ref: '#/components/schemas/TinTypeEnum'
          tinFingerprint:
            type: string
            description: The fingerprint for this TIN Verification.
        required:
        - createdAt
        - id
        - status
        - tinFingerprint
      examples:
      - name: Ada Lovelace
        id: tinVerificationId_sample41SD71AV8f
        createdAt: '2024-01-01T00:00:00.000Z'
        status: MATCH
        tin: '*******00'
        tinFingerprint: tinFingerprint_samplehy2BWO6JJG
        tinType: INDIVIDUAL
    TinVerificationId:
      type: string
      description: The unique identifier for the TIN Verification.
    TinFingerprintQueryParam:
      type: string
      description: Filters the list of TIN Verifications based on the `tinFingerprint` field.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer token. The token is the concatenation of your Abound appId and appSecret separated by a period, e.g. `appId_xxx.appSecret_yyy`.