POST /v3/instruments/:id/prices Append a price observation. The CLI is the "client" provider — the response sets `provider` to "client" automatically. Path params: id (required) — Instrument identifier (Mongo ObjectID). Request: { "data": { "type": "price", "attributes": { "date": "string, ISO 8601 (required)", "value": "number (required)" } } } Response (201 Created): { "data": { "id": "string", "type": "price", "attributes": { "date": "ISO 8601 date", "value": "number", "provider": "client" } } }