Skip to main content
This function allows you to list your conversions with pagination, filtering, and field selection, see an example below:
You should authenticate/initialize Ip2Geo before using this method.

With Pagination

You can paginate through conversions using offset and limit:
Filter conversions by IP address:

With Select Fields

Select specific fields from the conversion data object:

Parameters

offset
number
default:"0"
The number of conversions to skip for pagination.
limit
number
default:"50"
The maximum number of conversions to return. Maximum value is 50.
select
Array<SelectField>
Select specific data fields to return. If not specified, all data fields are returned. See SELECT Constants for all available fields.
Filter conversions by IP address.

Response

success
boolean
Whether the request was successful.
message
string
Response message describing the result.
code
number
HTTP status code.
data
object | null
The response data containing:
  • conversions: Array of conversion objects (or partial objects if select was used)
  • hasMore: Boolean indicating if there are more conversions to fetch
  • totalCount: Total number of conversions matching the query
_req
object
Request metadata containing:
  • reqId: Unique request identifier.
  • resTime: Response time in milliseconds.
For all available SELECT constants and their values, see the SELECT Constants reference.