First American Active Duty SCRA Search API

Servicemembers Civil Relief Act search to determine current or past military service of an applicant. Swagger 2.0, 2 operations.

Operations 2

POST /scra/order Make a new SCRA service call #
GET /scra/report Retrieve existing SCRA report by transactionID #

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/first-american-financial-scra"
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

first-american-financial-scra-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: ''
  version: v1
  title: SCRA API
host: api.firstam.io
basePath: /v1
tags:
- name: developers
  description: Operations available to regular developers
schemes:
- https
paths:
  /scra/order:
    post:
      tags:
      - Request
      summary: Make a new SCRA service call
      description: 'Required fields: RequestorID, FirstName, LastName, SSN, DOB'
      operationId: post
      consumes:
      - application/json
      - application/xml
      produces:
      - application/json
      - application/xml
      parameters:
      - in: header
        name: x-app-id
        description: Application ID
        required: true
        type: string
      - in: header
        name: x-app-key
        description: Application Key
        required: true
        type: string
      - in: body
        name: ServiceRequest
        description: Request to the Service
        required: true
        schema:
          $ref: '#/definitions/ServiceRequest'
      responses:
        '200':
          description: Success
          schema:
            $ref: '#/definitions/ServiceResponse'
        '400':
          description: Bad Request
        '401':
          description: Invalid App ID or Key
        '500':
          description: Internal Server Error
        '503':
          description: Usage Limit Exceeded
  /scra/report:
    get:
      tags:
      - Get Response
      summary: Retrieve existing SCRA report by transactionID
      description: Add a transactionID to the query string to retrieve an existing report.
      operationId: get
      consumes:
      - application/json
      - application/xml
      produces:
      - application/json
      - application/xml
      parameters:
      - in: header
        name: x-app-id
        description: Application ID
        required: true
        type: string
      - in: header
        name: x-app-key
        description: Application Key
        required: true
        type: string
      - name: transactionID
        in: query
        description: Unique Identifier Tied To a Report
        required: true
        type: string
      responses:
        '200':
          description: Success
          schema:
            $ref: '#/definitions/ServiceResponse'
        '400':
          description: Bad Request (Missing/Invalid TransactionID)
        '401':
          description: Invalid App ID or Key
        '404':
          description: Not Found (No Report Found by TransactionID)
        '500':
          description: Internal Server Error
        '503':
          description: Usage Limit Exceeded
definitions:
  ServiceRequest:
    type: object
    required:
    - RequestorID
    - Employer
    properties:
      RequestorID:
        type: string
      Person:
        $ref: '#/definitions/PersonRequest'
      ServiceDay:
        $ref: '#/definitions/DateRequest'
    example:
      RequestorID: '123'
      Person:
        Name:
          First: harry
          Last: dune
        SSN: 000905188
        DOB:
          Year: '1963'
          Month: '10'
          Day: '25'
      ServiceDay:
        Year: '2016'
        Month: '01'
        Day: '01'
  ServiceResponse:
    type: object
    properties:
      TransactionID:
        type: string
      RequestorID:
        type: string
      Error:
        $ref: '#/definitions/ErrorResponse'
      External:
        type: boolean
      Verified:
        type: boolean
      Affiliation:
        $ref: '#/definitions/AffiliationResponse'
  AffiliationResponse:
    type: object
    properties:
      Name:
        type: string
      Description:
        type: string
  PersonRequest:
    type: object
    properties:
      Name:
        $ref: '#/definitions/NameRequest'
      SSN:
        type: string
      DOB:
        $ref: '#/definitions/DateRequest'
  NameRequest:
    type: object
    properties:
      First:
        type: string
      Last:
        type: string
      Middle:
        type: string
  ErrorResponse:
    type: object
    properties:
      Code:
        type: string
      Message:
        type: string