Federal Highway Administration Secret Management API

Secret configuration endpoints

Operations 1

GET /prd/v2/secrets Get secret configuration #

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/federal-highway-administration-secret-management-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

federal-highway-administration-secret-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: V2X App Secret Management API
  description: API for Vehicle-to-Everything (V2X) Multi-Access Edge Computing (MEC) services. This App API provides endpoints for ETX registration, V2X Message Deposit, and authentication services.
  version: 1.0.0
servers:
- url: http://localhost:8080
  description: Generated server url
security:
- BearerAuth: []
tags:
- name: Secret Management
  description: Secret configuration endpoints
paths:
  /prd/v2/secrets:
    get:
      tags:
      - Secret Management
      summary: Get secret configuration
      description: Retrieves secret configuration including tokens and S3 settings.
      operationId: getSecretConfig
      responses:
        '200':
          description: Secret configuration retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecretResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - BearerAuth: []
components:
  schemas:
    S3Config:
      type: object
      properties:
        s3_access_key:
          type: string
        s3_secret_key:
          type: string
        s3_bucket_name:
          type: string
        s3_region:
          type: string
        s3_destination:
          type: string
    SecretResponse:
      type: object
      properties:
        iss_scms_token:
          type: string
        s3:
          $ref: '#/components/schemas/S3Config'
        mapbox_access_token:
          type: string
        noaa_geomag_api_token:
          type: string
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        description:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      description: Keycloak JWT Bearer Token. Required for all endpoints except decode endpoints. Obtain a token from the /auth/token endpoint using your credentials.
      scheme: bearer
      bearerFormat: JWT