SEON IP API

The IP API from SEON — 1 operation(s) for ip.

Operations 1

GET /SeonRestService/ip-api/v1/{ip} Lookup IP address intelligence #

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/seon-tech-ip-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

seon-tech-ip-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SEON AML IP API
  description: SEON is a fraud prevention and AML compliance platform offering a modular REST API architecture spanning the Fraud API and standalone Email, Phone, IP, BIN, and AML enrichment APIs.
  version: '1.0'
  x-generated-from: https://docs.seon.io/api-reference
  x-generated-by: claude-crawl-2026-05-25
servers:
- url: https://api.seon.io
  description: Default (EU) region
- url: https://api.us-east-1-main.seon.io
  description: US region
- url: https://api.ap-southeast-1-main.seon.io
  description: APAC region
- url: https://api.me-central-1-main.seon.io
  description: Middle East region
security:
- apiKey: []
tags:
- name: IP
paths:
  /SeonRestService/ip-api/v1/{ip}:
    get:
      summary: Lookup IP address intelligence
      description: Returns IP intelligence including history, flags, and identifiers.
      operationId: lookupIp
      tags:
      - IP
      parameters:
      - in: path
        name: ip
        required: true
        schema:
          type: string
        description: IPv4 or IPv6 address to evaluate.
      - in: query
        name: include
        required: false
        schema:
          type: string
        description: Comma-separated list of additional fields (history, flags, id).
      - in: query
        name: flags_timeframe_days
        required: false
        schema:
          type: integer
        description: Timeframe in days used when evaluating flags.
      responses:
        '200':
          description: IP intelligence result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
        default:
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      additionalProperties: true
      properties:
        error:
          type: string
        message:
          type: string
    GenericResponse:
      type: object
      additionalProperties: true
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-KEY