Wayflyer Industry Classification API

The Industry Classification API from Wayflyer — 1 operation(s) for industry classification.

Operations 1

GET /company/industry-classification/search/ Search industry classifications #

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/wayflyer-industry-classification-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

wayflyer-industry-classification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Embedded Finance Auth Industry Classification API
  version: '1'
  description: ''
servers:
- url: https://api.wayflyer.com/financing/
  description: Production
tags:
- name: Industry Classification
paths:
  /company/industry-classification/search/:
    get:
      operationId: wf_embedded_finance_service_apps_web_core_views_industry_classification_search_industry_classifications
      summary: Search industry classifications
      parameters:
      - $ref: '#/components/parameters/ApiVersion'
      - in: query
        name: query
        schema:
          description: Search query string
          minLength: 1
          title: Query
          type: string
        required: true
        description: Search query string
      - in: query
        name: max_results
        schema:
          default: 10
          description: Maximum number of results to return
          maximum: 100
          minimum: 1
          title: Max Results
          type: integer
        required: false
        description: Maximum number of results to return
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/IndustrySearchResultResponse'
                title: Response
                type: array
      description: 'Search industry classifications by query string.


        Returns a list of matching industries sorted by relevance score (highest first).'
      tags:
      - Industry Classification
      security:
      - CompanyToken: []
components:
  schemas:
    IndustrySearchResultResponse:
      properties:
        code:
          description: Industry classification code (e.g. '5010101010')
          title: Code
          type: string
        activity:
          description: Human-readable industry activity name
          title: Activity
          type: string
        relevance_score:
          description: Search relevance score (higher = better match)
          title: Relevance Score
          type: number
        sub_text:
          description: 'Hierarchy context: economic sector, business sector, industry group'
          title: Sub Text
          type: string
      required:
      - code
      - activity
      - relevance_score
      - sub_text
      title: IndustrySearchResultResponse
      type: object
  parameters:
    ApiVersion:
      in: header
      name: API-Version
      schema:
        title: API-Version
        type: string
        enum:
        - '1'
      required: false
  securitySchemes:
    CompanyToken:
      type: http
      scheme: bearer
    PartnerToken:
      type: http
      scheme: bearer