# MD for: https://www.mercadopago.com.ar/developers/pt/docs/checkout-pro-orders/additional-settings/create-order-for-multiple-items.md \# Create order for multiple items To create an order with multiple items, include them as a list in the \`items\` array when sending the request to the :TagComponent{tag="API" text="Create order" href="/developers/en/reference/online-payments/checkout-pro/create-order/post"} endpoint. > NOTE > > The \`total\_amount\` value must equal the sum of \`unit\_price\` multiplied by \`quantity\` for all items included in the order. \`\`\`curl curl -X POST \\ -H 'accept: application/json' \\ -H 'Content-Type: application/json' \\ -H 'Authorization: Bearer ENV\_ACCESS\_TOKEN' \\ -H 'X-Idempotency-Key: UNIQUE\_KEY' \\ 'https://api.mercadopago.com/v1/orders' \\ -d '{ "type": "online", "processing\_mode": "manual", "total\_amount": "250.00", "external\_reference": "order\_pro\_123", "payer": { "email": "buyer@email.com" }, "items": \[ { "title": "My product 1", "unit\_price": "100.00", "quantity": 1, "unit\_measure": "unit", "total\_amount": "100.00" }, { "title": "My product 2", "unit\_price": "75.00", "quantity": 2, "unit\_measure": "unit", "total\_amount": "150.00" } \] }' \`\`\`