> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /browserleaks/ips

> Look up an IP address or domain — geolocation, ISP and ASN, network usage flags, Tor relay identification and the registry whois record

**Price:** 1 credit

**⚠️ Common errors:** 412: browserleaks.com does not recognise this address



## OpenAPI

````yaml /openapi/domains-osint.json post /api/browserleaks/ips
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/browserleaks/ips:
    post:
      tags:
        - /browserleaks
      summary: /browserleaks/ips
      description: >-
        Look up an IP address or domain — geolocation, ISP and ASN, network
        usage flags, Tor relay identification and the registry whois record


        **Price:** 1 credit


        **⚠️ Common errors:** 412: browserleaks.com does not recognise this
        address
      operationId: __api_browserleaks_ips_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrowserleaksIpPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BrowserleaksIp'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BrowserleaksIpPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        address:
          type: string
          minLength: 1
      type: object
      required:
        - address
    BrowserleaksIp:
      properties:
        '@type':
          type: string
          default: BrowserleaksIp
        ip:
          type: string
        domain:
          anyOf:
            - type: string
            - type: 'null'
        hostname:
          anyOf:
            - type: string
            - type: 'null'
        additional_ips:
          items:
            type: string
          type: array
          default: []
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        isp:
          anyOf:
            - type: string
            - type: 'null'
        organization:
          anyOf:
            - type: string
            - type: 'null'
        asn:
          anyOf:
            - type: integer
            - type: 'null'
        asn_name:
          anyOf:
            - type: string
            - type: 'null'
        network_tags:
          items:
            $ref: '#/components/schemas/BrowserleaksNetworkTag'
          type: array
          default: []
        usage_type:
          anyOf:
            - type: string
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
        timezone_abbreviation:
          anyOf:
            - type: string
            - type: 'null'
        utc_offset:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        assignment:
          anyOf:
            - type: string
            - type: 'null'
        assignment_rfc:
          anyOf:
            - type: string
            - type: 'null'
        address_block:
          anyOf:
            - type: string
            - type: 'null'
        net_range:
          anyOf:
            - type: string
            - type: 'null'
        tor_relays:
          items:
            $ref: '#/components/schemas/BrowserleaksTorRelay'
          type: array
          default: []
        registry:
          anyOf:
            - $ref: '#/components/schemas/BrowserleaksIpRegistry'
            - type: 'null'
        whois:
          items:
            $ref: '#/components/schemas/BrowserleaksWhoisEntry'
          type: array
          default: []
      type: object
      required:
        - ip
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BrowserleaksNetworkTag:
      properties:
        '@type':
          type: string
          default: BrowserleaksNetworkTag
        code:
          type: string
      type: object
      required:
        - code
    BrowserleaksTorRelay:
      properties:
        '@type':
          type: string
          default: BrowserleaksTorRelay
        fingerprint:
          type: string
        nickname:
          anyOf:
            - type: string
            - type: 'null'
        is_running:
          anyOf:
            - type: boolean
            - type: 'null'
        or_addresses:
          items:
            type: string
          type: array
          default: []
        exit_addresses:
          items:
            type: string
          type: array
          default: []
        flags:
          items:
            type: string
          type: array
          default: []
        exit_policy:
          items:
            type: string
          type: array
          default: []
        first_seen_at:
          anyOf:
            - type: integer
            - type: 'null'
        last_seen_at:
          anyOf:
            - type: integer
            - type: 'null'
        last_restarted_at:
          anyOf:
            - type: integer
            - type: 'null'
        bandwidth_mbps:
          anyOf:
            - type: number
            - type: 'null'
        contact:
          anyOf:
            - type: string
            - type: 'null'
        platform:
          anyOf:
            - type: string
            - type: 'null'
        version_status:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - fingerprint
    BrowserleaksIpRegistry:
      properties:
        '@type':
          type: string
          default: BrowserleaksIpRegistry
        source:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        allocation_type:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        ip_version:
          anyOf:
            - type: string
            - type: 'null'
        start_address:
          anyOf:
            - type: string
            - type: 'null'
        end_address:
          anyOf:
            - type: string
            - type: 'null'
        cidr:
          items:
            type: string
          type: array
          default: []
        parent_id:
          anyOf:
            - type: string
            - type: 'null'
        status:
          items:
            type: string
          type: array
          default: []
        registered_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        remarks:
          items:
            type: string
          type: array
          default: []
        contacts:
          items:
            $ref: '#/components/schemas/BrowserleaksRegistryContact'
          type: array
          default: []
      type: object
    BrowserleaksWhoisEntry:
      properties:
        '@type':
          type: string
          default: BrowserleaksWhoisEntry
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
    BrowserleaksRegistryContact:
      properties:
        '@type':
          type: string
          default: BrowserleaksRegistryContact
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        organization:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          anyOf:
            - type: string
            - type: 'null'
        roles:
          items:
            type: string
          type: array
          default: []
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        remarks:
          items:
            type: string
          type: array
          default: []
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````