> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ionworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List a measurement's raw-data sources

> List raw-data records linked to a measurement.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /cell_measurements/{measurement_id}/raw_data
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /cell_measurements/{measurement_id}/raw_data:
    get:
      tags:
        - Cell Measurements
      summary: List a measurement's raw-data sources
      description: List raw-data records linked to a measurement.
      operationId: >-
        list_measurement_raw_data_cell_measurements__measurement_id__raw_data_get
      parameters:
        - name: measurement_id
          in: path
          required: true
          schema:
            type: string
            title: Measurement Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            title: Offset
            default: 0
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_RawData_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PaginatedResponse_RawData_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/RawData'
          type: array
          title: Items
        count:
          type: integer
          title: Count
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - count
        - total
      title: PaginatedResponse[RawData]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RawData:
      properties:
        project_id:
          type: string
          title: Project Id
          description: Owning project ID (required).
        name:
          type: string
          title: Name
          description: User-provided label for the raw file.
        source:
          anyOf:
            - type: string
            - type: 'null'
          title: Source
          description: >-
            Free-text provenance: where this raw file came from (a URL, DOI, S3
            URI, vendor/cycler export description, etc.).
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
          description: Loose free-form metadata.
        id:
          type: string
          title: Id
          description: Unique identifier.
        organization_id:
          type: string
          title: Organization Id
          description: Owning organization.
        filename:
          type: string
          title: Filename
          description: Original uploaded filename.
        content_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Content Type
          description: MIME type, if known.
        size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Size Bytes
          description: File size in bytes.
        storage_path:
          type: string
          title: Storage Path
          description: Path within the raw-data bucket.
        created_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Created By
          description: User ID of the uploader.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Creation timestamp.
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: Last update timestamp.
      type: object
      required:
        - project_id
        - name
        - id
        - organization_id
        - filename
        - storage_path
        - created_at
        - updated_at
      title: RawData
      description: A raw-data record as returned by the API.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````