Skip to main content
POST
/
api
/
v2
/
conversions
Insert Conversion V2
curl --request POST \
  --url https://services.meetchase.ai/api/v2/conversions \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "email": "[email protected]",
  "conversion_type": "sign-up",
  "conversion_data": {}
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Body

application/json

This model is used when submitting a new conversion event, such as when a user signs up or makes a purchase.

  • email (str): The email address of the individual or entity associated with the conversion event.
  • conversion_type (str, optional): An optional string representing the type of conversion. This field is useful when tracking different conversion types, e.g., 'Sign-up', 'Purchase'. Max length is 63 characters.
  • conversion_data (dict, optional): An optional JSON/dict object that contains any additional optional data tied to the conversion event, if required.

Example Usage

{
"email": "[email protected]"
"conversion_type": "sign-up",
"conversion_data": {
"product": "premium-subscription",
"price": 99.99
}
}
email
string<email>
required

The email address of the person or entity tied to the conversion.

conversion_type
string | null

An optional short descriptive string to identify the type of conversion. This field is useful when tracking different conversion types, e.g., 'Sign-up', 'Purchase'. Max length is 63 characters.

Maximum string length: 63
Example:

"sign-up"

conversion_data
Conversion Data · object

Optional JSON object that can hold additional data related to the conversion, if required.

Response

Successful Response