{
  "openapi": "3.0.1",
  "info": {
    "title": "Facebook Conversions API (CAPI) - Server-Side Events",
    "description": "Send offline conversions & server-side events to Meta Conversions API. Track purchases, leads & custom events for Facebook and Instagram ads attribution.\n\nSend a single conversion event\nSend multiple events\nList all pixels in ad account\nGet pixel details and stats\nValidate before sending",
    "version": "1.0",
    "x-build-id": "6OAXbJsOCg6GPGens"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/alizarin_refrigerator-owner~facebook-conversions-api-capi---server-side-events/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-alizarin_refrigerator-owner-facebook-conversions-api-capi---server-side-events",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/alizarin_refrigerator-owner~facebook-conversions-api-capi---server-side-events/runs": {
      "post": {
        "operationId": "runs-sync-alizarin_refrigerator-owner-facebook-conversions-api-capi---server-side-events",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/alizarin_refrigerator-owner~facebook-conversions-api-capi---server-side-events/run-sync": {
      "post": {
        "operationId": "run-sync-alizarin_refrigerator-owner-facebook-conversions-api-capi---server-side-events",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "task"
        ],
        "properties": {
          "task": {
            "title": "Task",
            "enum": [
              "send_event",
              "send_batch_events",
              "test_event",
              "get_event_stats",
              "list_pixels",
              "get_pixel_info",
              "validate_events"
            ],
            "type": "string",
            "description": "The operation to perform",
            "default": "send_event"
          },
          "accessToken": {
            "title": "Facebook Access Token",
            "type": "string",
            "description": "Facebook Marketing API access token"
          },
          "pixelId": {
            "title": "Pixel ID",
            "type": "string",
            "description": "Facebook Pixel ID to send events to"
          },
          "testEventCode": {
            "title": "Test Event Code",
            "type": "string",
            "description": "Test event code from Events Manager (for testing only)"
          },
          "eventName": {
            "title": "Event Name",
            "enum": [
              "Purchase",
              "Lead",
              "CompleteRegistration",
              "AddToCart",
              "InitiateCheckout",
              "Subscribe",
              "Contact",
              "ViewContent",
              "Search",
              "AddPaymentInfo",
              "AddToWishlist",
              "CustomEvent"
            ],
            "type": "string",
            "description": "Standard or custom event name",
            "default": "Purchase"
          },
          "customEventName": {
            "title": "Custom Event Name",
            "type": "string",
            "description": "Name for custom event (if eventName is CustomEvent)"
          },
          "events": {
            "title": "Events (JSON Array)",
            "type": "string",
            "description": "JSON array of event objects for batch sending"
          },
          "email": {
            "title": "Email",
            "type": "string",
            "description": "Customer email (will be hashed)"
          },
          "phone": {
            "title": "Phone",
            "type": "string",
            "description": "Customer phone (will be hashed)"
          },
          "firstName": {
            "title": "First Name",
            "type": "string",
            "description": "Customer first name (will be hashed)"
          },
          "lastName": {
            "title": "Last Name",
            "type": "string",
            "description": "Customer last name (will be hashed)"
          },
          "city": {
            "title": "City",
            "type": "string",
            "description": "Customer city (will be hashed)"
          },
          "state": {
            "title": "State",
            "type": "string",
            "description": "Customer state (will be hashed)"
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "Customer country code",
            "default": "US"
          },
          "zipCode": {
            "title": "Zip Code",
            "type": "string",
            "description": "Customer zip/postal code (will be hashed)"
          },
          "externalId": {
            "title": "External ID",
            "type": "string",
            "description": "Your unique customer identifier"
          },
          "fbclid": {
            "title": "Facebook Click ID (fbclid)",
            "type": "string",
            "description": "Facebook click ID from URL parameter"
          },
          "fbp": {
            "title": "Facebook Browser ID (fbp)",
            "type": "string",
            "description": "Facebook browser ID cookie value"
          },
          "fbc": {
            "title": "Facebook Click ID Cookie (fbc)",
            "type": "string",
            "description": "Facebook click ID cookie value"
          },
          "eventTime": {
            "title": "Event Time",
            "type": "string",
            "description": "Event timestamp (ISO 8601 or Unix timestamp)"
          },
          "eventSourceUrl": {
            "title": "Event Source URL",
            "type": "string",
            "description": "URL where the conversion occurred"
          },
          "value": {
            "title": "Conversion Value",
            "type": "number",
            "description": "Monetary value of the conversion"
          },
          "currency": {
            "title": "Currency",
            "type": "string",
            "description": "ISO 4217 currency code",
            "default": "USD"
          },
          "orderId": {
            "title": "Order ID",
            "type": "string",
            "description": "Unique order/transaction identifier"
          },
          "contentIds": {
            "title": "Content IDs",
            "type": "string",
            "description": "Comma-separated product/content IDs"
          },
          "contentType": {
            "title": "Content Type",
            "enum": [
              "product",
              "product_group"
            ],
            "type": "string",
            "description": "Type of content",
            "default": "product"
          },
          "actionSource": {
            "title": "Action Source",
            "enum": [
              "website",
              "app",
              "phone_call",
              "chat",
              "email",
              "physical_store",
              "system_generated",
              "other"
            ],
            "type": "string",
            "description": "Where the conversion originated",
            "default": "website"
          },
          "isAlreadyHashed": {
            "title": "Data Already Hashed",
            "type": "boolean",
            "description": "Set to true if PII data is already SHA256 hashed",
            "default": false
          },
          "webhookUrl": {
            "title": "Result Webhook URL",
            "type": "string",
            "description": "URL to receive results via webhook"
          },
          "demoMode": {
            "title": "Demo Mode",
            "type": "boolean",
            "description": "Run with sample data for testing (no external API calls)",
            "default": true
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}