# IP to Company

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /lead/resolution/ip_to_company:
    post:
      summary: IP to Company
      deprecated: false
      description: >
        <p>Turn raw IPs into account-level intelligence. IP To Company returns
        company name, domain, industry, size, and location: the foundation for
        ABM targeting, sales territory routing, dynamic website personalization,
        and account-based ad campaigns. Built on a constantly refreshed B2B IP
        graph.</p>
      operationId: resolveIpToCompany
      tags:
        - 👤  Lead Resolution
        - Resolution
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              x-apidog-refs:
                01KMJN2S108HX6WE7GKWM9A4YS:
                  $ref: '#/components/schemas/IpToCompanyRequest'
                  x-apidog-overrides:
                    metadata: null
              x-apidog-orders:
                - 01KMJN2S108HX6WE7GKWM9A4YS
              properties:
                ip:
                  type: string
                  description: >-
                    The IP address of a web visitor or lead. Used for
                    deanonymization endpoints.
                  examples:
                    - 8.8.8.8
              required:
                - ip
              x-apidog-ignore-properties:
                - ip
            example:
              ip: 8.8.8.8
      responses:
        '200':
          description: Company resolved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  lead:
                    type: object
                    properties:
                      company:
                        type: object
                        properties:
                          name:
                            type: string
                          domain:
                            type: string
                          website_url:
                            type: string
                          linkedin_url:
                            type: string
                          industry:
                            type: 'null'
                          revenue:
                            type: string
                          employee_count:
                            type: string
                          year_founded:
                            type: 'null'
                          address:
                            type: object
                            properties:
                              street:
                                type: string
                              zip_code:
                                type: string
                              city:
                                type: string
                              state:
                                type: string
                            required:
                              - street
                              - zip_code
                              - city
                              - state
                            x-apidog-orders:
                              - street
                              - zip_code
                              - city
                              - state
                            x-apidog-ignore-properties: []
                          about:
                            type: string
                        required:
                          - name
                          - domain
                          - website_url
                          - linkedin_url
                          - industry
                          - revenue
                          - employee_count
                          - year_founded
                          - address
                          - about
                        x-apidog-orders:
                          - name
                          - domain
                          - website_url
                          - linkedin_url
                          - industry
                          - revenue
                          - employee_count
                          - year_founded
                          - address
                          - about
                        x-apidog-ignore-properties: []
                    required:
                      - company
                    x-apidog-orders:
                      - company
                    x-apidog-ignore-properties: []
                  payload:
                    type: object
                    properties:
                      ip:
                        type: string
                    x-apidog-orders:
                      - ip
                    required:
                      - ip
                    x-apidog-ignore-properties: []
                required:
                  - success
                  - message
                  - lead
                  - payload
                x-apidog-orders:
                  - success
                  - message
                  - lead
                  - payload
                x-apidog-ignore-properties: []
              example:
                success: true
                message: Resolution successfully completed
                lead:
                  company:
                    name: Rdw Financial Group
                    domain: clmt.com
                    website_url: clmt.com
                    linkedin_url: linkedin.com/company/452139
                    industry: null
                    revenue: 100 Million To 250 Million
                    employee_count: 501 To 1000
                    year_founded: null
                    address:
                      street: 777 Beachway Dr
                      zip_code: '46224'
                      city: Indianapolis
                      state: Indiana
                    about: Some description
                payload:
                  ip: 8.8.8.8
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: 👤  Lead Resolution
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1235890/apis/api-31382861-run
components:
  schemas:
    IpToCompanyRequest:
      type: object
      description: >-
        Identify the company behind any IP for ABM, account routing, and
        firmographic personalization.
      required:
        - ip
      properties:
        ip:
          type: string
          description: >-
            The IP address of a web visitor or lead. Used for deanonymization
            endpoints.
          examples:
            - 8.8.8.8
        metadata:
          type: object
          additionalProperties: true
          x-apidog-orders: []
          examples:
            - source: pixel_test
          properties: {}
          x-apidog-ignore-properties: []
      x-apidog-orders:
        - ip
        - metadata
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes:
    bearerAuth:
      type: jwt
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Organization JWT or API key from Core API. Send in header:
        Authorization: Bearer {token}
    sysAuth:
      type: apikey
      in: header
      name: x-sys-key
      description: >-
        System authentication key for internal endpoints. Only for inter-service
        calls.
servers:
  - url: https://api.lead.springbolt.app
    description: Prod Env
security: []

```
