# Retrieve a single instrument Retrieves an instrument for the specified client. The instrument must belong to the client or to one of its customers; otherwise an error is returned. Endpoint: GET /v1/clients/{clientId}/instruments/{instrumentId} Version: 1.0.0 Security: bearerAuth ## Path parameters: - `clientId` (string, required) Client identifier (UUID). - `instrumentId` (string, required) Instrument identifier (UUID). ## Response 200 fields (application/json): - `id` (string, required) Example: "dd7f8d89-94dd-43ca-871b-720fde378b52" - `bankId` (string, required) Example: "d3435bd9-998d-4e8a-9067-6b71d5fd3ac7" - `clientId` (string, required) Example: "c2d1d1e3-3340-4170-980e-e9269bbbc551" - `ownerId` (string, required) Identifier of the entity that owns this instrument (client or customer). When the instrument belongs to a customer, ownerId and customerId will be the same. Example: "c2d1d1e3-3340-4170-980e-e9269bbbc551" - `alias` (string, required) Example: "Instrumento base" - `type` (string, required) Enum: "RECEIVER" - `audit` (object, required) - `audit.createdAt` (string, required) Example: "2025-05-19 19:03:51.084659-06:00" - `audit.updatedAt` (string, required) Example: "2025-05-19 19:03:51.084668-06:00" - `audit.deletedAt` (string,null, required) - `audit.blockedAt` (string,null, required) - `rfc` (string, required) Example: "XAXX010101000" - `customerId` (string) Customer who owns the instrument when applicable. Present when the instrument belongs to a customer; omitted for client-level instruments. Example: "bb1e8fde-e68e-48e9-a483-d32153c752c2" - `instrumentDetail` (any, required) ## Response 404 fields