Veterans Affairs Other Accredited Representatives API

The Other Accredited Representatives API from Veterans Affairs — 1 operation(s) for other accredited representatives.

Operations 1

GET /v0/other_accredited_representatives Get a list of accredited attorneys #

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/va-other-accredited-representatives-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

va-other-accredited-representatives-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Other Accredited Representatives API
  description: This API provides access to accredited representatives based on various criteria such as location and type.
  contact:
    name: va.gov
servers:
- url: http://localhost:3000/services/veteran
  description: VA.gov API local environment
- url: https://staging-api.va.gov/services/veteran
  description: VA.gov API staging environment
- url: https://api.va.gov/services/veteran
  description: VA.gov API production environment
tags:
- name: Other Accredited Representatives
paths:
  /v0/other_accredited_representatives:
    get:
      summary: Get a list of accredited attorneys
      description: Retrieve accredited attorneys based on location, name, and type. Supports sorting and pagination.
      operationId: getOtherAccreditedRepresentatives
      tags:
      - Other Accredited Representatives
      parameters:
      - in: query
        name: lat
        required: true
        schema:
          type: number
          format: float
          minimum: -90
          maximum: 90
        description: Latitude for the search location.
      - in: query
        name: long
        required: true
        schema:
          type: number
          format: float
          minimum: -180
          maximum: 180
        description: Longitude for the search location.
      - in: query
        name: type
        required: true
        schema:
          type: string
        description: Type of accredited representative (e.g., attorney or claim_agents).
      - in: query
        name: distance
        schema:
          type: number
          format: integer
          enum:
          - 5
          - 10
          - 25
          - 50
          - 100
          - 200
        description: Search radius in miles.
      - in: query
        name: name
        schema:
          type: string
        description: Name to search for.
      - in: query
        name: page
        schema:
          type: integer
          default: 1
        description: Page number for pagination.
      - in: query
        name: per_page
        schema:
          type: integer
          default: 10
        description: Number of results per page.
      - in: query
        name: sort
        schema:
          type: string
          enum:
          - distance_asc
          - first_name_asc
          - first_name_desc
          - last_name_asc
          - last_name_desc
          default: distance_asc
        description: Sorting order of the results.
      responses:
        '200':
          description: A list of accredited representatives
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BaseRepresentative'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
components:
  schemas:
    BadRequestError:
      type: object
      properties:
        errors:
          type: object
          properties:
            title:
              type: string
              example: Invalid field value
            detail:
              type: string
              example: my_rep is not a valid value for type
            code:
              type: string
              example: '103'
            status:
              type: string
              example: '400'
    InternalServerError:
      type: object
      properties:
        errors:
          type: object
          properties:
            title:
              type: string
              example: Internal server error
            detail:
              type: string
              example: Internal server error
            code:
              type: string
              example: '500'
            status:
              type: string
              example: '500'