---
name: ingestion-api
description: "Ingestion API skill. Use when working with Ingestion for import, track, engage#profile-set. Covers 20 endpoints."
version: 1.0.0
generator: lapsh
---

# Ingestion API
API version: 1.0.0

## Auth
No authentication required.

## Base URL
https://api.mixpanel.com

## Setup
1. No auth setup needed
2. GET /lookup-tables -- list lookup tables
3. POST /import -- create first import

## Endpoints
20 endpoints across 19 groups. See references/api-spec.lap for full details.

### Import
| Method | Path | Description |
|--------|------|-------------|
| POST | /import | Import Events |

### Track
| Method | Path | Description |
|--------|------|-------------|
| POST | /track | Track Events |

### Engage#profile-set
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-set | Set Property |

### Engage#profile-set-once
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-set-once | Set Property Once |

### Engage#profile-numerical-add
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-numerical-add | Increment Numerical Property |

### Engage#profile-union
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-union | Union To List Property |

### Engage#profile-list-append
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-list-append | Append to List Property |

### Engage#profile-list-remove
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-list-remove | Remove from List Property |

### Engage#profile-unset
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-unset | Delete Property |

### Engage#profile-batch-update
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-batch-update | Update Multiple Profiles |

### Engage#profile-delete
| Method | Path | Description |
|--------|------|-------------|
| POST | /engage#profile-delete | Delete Profile |

### Groups#group-set
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-set | Update Property |

### Groups#group-set-once
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-set-once | Set Property Once |

### Groups#group-unset
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-unset | Delete Property |

### Groups#group-remove-from-list
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-remove-from-list | Remove from List Property |

### Groups#group-union
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-union | Union To List Property |

### Groups#group-batch-update
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-batch-update | Batch Update Group Profiles |

### Groups#group-delete
| Method | Path | Description |
|--------|------|-------------|
| POST | /groups#group-delete | Delete Group |

### Lookup-tables
| Method | Path | Description |
|--------|------|-------------|
| GET | /lookup-tables | List Lookup Tables |
| PUT | /lookup-tables/{id} | Replace a Lookup Table |

## Common Questions
Match user requests to endpoints in references/api-spec.lap. Key patterns:
- "Create a import?" -> POST /import
- "Create a track?" -> POST /track
- "Create a engage#profile-set?" -> POST /engage#profile-set
- "Create a engage#profile-set-once?" -> POST /engage#profile-set-once
- "Create a engage#profile-numerical-add?" -> POST /engage#profile-numerical-add
- "Create a engage#profile-union?" -> POST /engage#profile-union
- "Create a engage#profile-list-append?" -> POST /engage#profile-list-append
- "Create a engage#profile-list-remove?" -> POST /engage#profile-list-remove
- "Create a engage#profile-unset?" -> POST /engage#profile-unset
- "Create a engage#profile-batch-update?" -> POST /engage#profile-batch-update
- "Create a engage#profile-delete?" -> POST /engage#profile-delete
- "Create a groups#group-set?" -> POST /groups#group-set
- "Create a groups#group-set-once?" -> POST /groups#group-set-once
- "Create a groups#group-unset?" -> POST /groups#group-unset
- "Create a groups#group-remove-from-list?" -> POST /groups#group-remove-from-list
- "Create a groups#group-union?" -> POST /groups#group-union
- "Create a groups#group-batch-update?" -> POST /groups#group-batch-update
- "Create a groups#group-delete?" -> POST /groups#group-delete
- "List all lookup-tables?" -> GET /lookup-tables
- "Update a lookup-table?" -> PUT /lookup-tables/{id}

## Response Tips
- Check response schemas in references/api-spec.lap for field details
- Create/update endpoints return the modified resource on success
- Error responses include status codes and descriptions in the spec

## References
- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas

> Generated from the official API spec by [LAP](https://lap.sh)
