Endpoint for interacting with timeseries metadata.

Query parameters:

uuid Exact filter on uuid.

uuid__in List filter on uuid. UUIDs must be comma separated.

name Filter on name. Filter methods exact and startswith are supported.

code Filter on code. Filter methods exact and startswith are supported.

start: Temporal filter on start. Supports various lookup types (exact, lt, lte, gt, gte; start__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

end: Temporal filter on end. Supports various lookup types (exact, lt, lte, gt, gte; end__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

value_type Filter on value_type. Choices are integer, float, boolean, text, image, movie, file, float array.

observation_type__id Filter on observation_type__id. Filter method exact is supported.

observation_type__code Filter on observation_type__code. Filter methods exact and startswith are supported.

datasource__id Filter on datasource__id. Filter method exact is supported.

datasource__uuid Filter on datasource__uuid field. Filter method exact is supported.

location__uuid Filter on location__uuid field. Filter method exact is supported.

location__organisation__uuid (Requires also filter on code) Filter on location__organisation__uuid. Filter method exact is supported.

monitoring_network__id Filter on monitoring_network__id. Filter method exact is supported.

access_modifier Filter on access_modifier, options are 'Public', 'Private', 'Common', or 'Hidden'.

created: Temporal filter on created. Supports various lookup types (exact, lt, lte, gt, gte; created__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

last_modified: Temporal filter on last_modified. Supports various lookup types (exact, lt, lte, gt, gte; last_modified__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

Examples

?uuid=d08a97db-80b4-4a0b-bc5b-078f97a948e5

?uuid__in=d08a97db-80b4-4a0b-bc5b-078f97a948e5,9723f42c-820a-4c5f-96ce-9febef948f53

?name=my-timeseries

?name__startswith=my-tim

?code=abc&location__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?code__startswith=a&location__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?start__gte=2017-01-01T00:00:00Z

?end__lt=2018-01-01T00:00:00Z

?value_type=float

?observation_type=1

?observation_type__id=1

?observation_type__code=my-code

?observation_type__code__startswith=my-c

?datasource=1

?datasource__id=1

?datasource__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?location__code=MOB_MP_P_5min

?location__name__startswith=Rotterdam

?location__organisation__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?location__uuid=b10eaf1f-2867-4ffb-8f4a-5eb9bd37dbf1

?access_modifier=Private

?access_modifier=100

?created__gte=2017-01-01T00:00:00Z

?last_modified__lt=2018-01-01T00:00:00Z
GET /api/v4/timeseries/?format=api&page=30
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 326771,
    "next": "https://demo.lizard.net/api/v4/timeseries/?format=api&page=31",
    "previous": "https://demo.lizard.net/api/v4/timeseries/?format=api&page=29",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/c05d79dd-4555-4291-833a-7a8c17e19d78/?format=api",
            "uuid": "c05d79dd-4555-4291-833a-7a8c17e19d78",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-14T08:00:00Z",
            "value_type": "float",
            "last_value": 0.2,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/431793a6-4913-4645-b169-6b940b97710b/?format=api",
                "uuid": "431793a6-4913-4645-b169-6b940b97710b",
                "name": "HENGELO",
                "code": "668"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:05.953866Z",
            "last_modified": "2025-03-15T15:10:30.784974Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/0db549e1-34ff-467a-8efe-050c45720376/?format=api",
            "uuid": "0db549e1-34ff-467a-8efe-050c45720376",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-17T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/1863050a-ea23-4604-a734-81a7b632960b/?format=api",
                "uuid": "1863050a-ea23-4604-a734-81a7b632960b",
                "name": "BORCULO",
                "code": "669"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.010617Z",
            "last_modified": "2025-03-18T14:05:41.136614Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/b8b2cc4c-0044-4c01-b987-6014588e4c05/?format=api",
            "uuid": "b8b2cc4c-0044-4c01-b987-6014588e4c05",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-06T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/1ac61c0b-bd32-4379-8135-0b95c0b5541b/?format=api",
                "uuid": "1ac61c0b-bd32-4379-8135-0b95c0b5541b",
                "name": "TWENTHE N",
                "code": "670"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.070377Z",
            "last_modified": "2025-03-10T15:25:36.943824Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/ca368e25-78bf-401f-b0c7-6550d2e8e88a/?format=api",
            "uuid": "ca368e25-78bf-401f-b0c7-6550d2e8e88a",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-11T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/c6f14f9b-3bcb-4ace-bdb2-c39dec36f02e/?format=api",
                "uuid": "c6f14f9b-3bcb-4ace-bdb2-c39dec36f02e",
                "name": "HELLENDOORN",
                "code": "672"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.112755Z",
            "last_modified": "2025-03-12T15:10:29.466902Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/54f2b5d0-faad-41a9-9e6e-bd101b5a8c01/?format=api",
            "uuid": "54f2b5d0-faad-41a9-9e6e-bd101b5a8c01",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-17T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/3ffe2156-f364-46c0-9de6-b2a067efcfe7/?format=api",
                "uuid": "3ffe2156-f364-46c0-9de6-b2a067efcfe7",
                "name": "GENDRINGEN",
                "code": "673"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.160888Z",
            "last_modified": "2025-03-18T14:05:51.548859Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/16742c06-1c63-4963-a193-57e9878fb328/?format=api",
            "uuid": "16742c06-1c63-4963-a193-57e9878fb328",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-16T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/9c16ab27-3ded-45d7-bb83-9f911913ece2/?format=api",
                "uuid": "9c16ab27-3ded-45d7-bb83-9f911913ece2",
                "name": "REKKEN",
                "code": "674"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.224470Z",
            "last_modified": "2025-03-17T15:10:58.084328Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/879d031f-e53f-4ecf-923a-7f3374e0d621/?format=api",
            "uuid": "879d031f-e53f-4ecf-923a-7f3374e0d621",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-17T08:00:00Z",
            "value_type": "float",
            "last_value": 0.1,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/2f48cfb9-f692-4eb6-a8bb-9ee9cf104015/?format=api",
                "uuid": "2f48cfb9-f692-4eb6-a8bb-9ee9cf104015",
                "name": "WEERSELO",
                "code": "675"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.281013Z",
            "last_modified": "2025-03-18T14:05:29.190770Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/0a5778e3-51c4-4443-ae67-0a61c6fe4705/?format=api",
            "uuid": "0a5778e3-51c4-4443-ae67-0a61c6fe4705",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2021-06-24T08:00:00Z",
            "value_type": "float",
            "last_value": null,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/fec30568-2faf-4895-b349-b8fbb467657c/?format=api",
                "uuid": "fec30568-2faf-4895-b349-b8fbb467657c",
                "name": "DEVENTER",
                "code": "677"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.324311Z",
            "last_modified": "2021-06-23T16:10:55.703280Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/56722113-3a53-4e07-9677-153251c0c2b3/?format=api",
            "uuid": "56722113-3a53-4e07-9677-153251c0c2b3",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-03-17T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/e978f487-d1a4-41df-bab1-b0079d719006/?format=api",
                "uuid": "e978f487-d1a4-41df-bab1-b0079d719006",
                "name": "ALMEN",
                "code": "678"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.374008Z",
            "last_modified": "2025-03-18T14:05:50.931725Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/237fa3a3-a53f-4460-8208-ecf8334ffb46/?format=api",
            "uuid": "237fa3a3-a53f-4460-8208-ecf8334ffb46",
            "code": "WNS1400.1d::second::1::86400",
            "name": "WNS1400.1d",
            "description": "",
            "start": "2009-12-29T08:00:00Z",
            "end": "2025-02-28T08:00:00Z",
            "value_type": "float",
            "last_value": 2.2,
            "interval": 86400,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/36/?format=api",
                "id": 36,
                "code": "WNS1400",
                "parameter": "Neerslag",
                "unit": "mm",
                "scale": "ratio",
                "description": "",
                "domain_values": null,
                "reference_frame": "",
                "compartment": "NT",
                "created": "2015-08-06T15:16:49.002578Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": "",
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/8bee7404-4c26-4e27-a427-bcb876fef0b2/?format=api",
                "uuid": "8bee7404-4c26-4e27-a427-bcb876fef0b2",
                "name": "HERWEN",
                "code": "679"
            },
            "extra_metadata": {},
            "created": "2014-11-05T13:47:06.420144Z",
            "last_modified": "2025-03-10T15:25:38.880961Z",
            "access_modifier": "Public"
        }
    ]
}