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/?page=2
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 326548,
    "next": "https://demo.lizard.net/api/v4/timeseries/?page=3",
    "previous": "https://demo.lizard.net/api/v4/timeseries/",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/816e91e9-02a8-45bb-a127-c4e0fd92c920/",
            "uuid": "816e91e9-02a8-45bb-a127-c4e0fd92c920",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2011-07-26T06:00:00Z",
            "end": "2018-08-06T12:45:00Z",
            "value_type": "float",
            "last_value": -0.515,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/6b3bff08-8db9-4782-9e23-3d4c67e18094/",
                "uuid": "6b3bff08-8db9-4782-9e23-3d4c67e18094",
                "name": "Egmond, boezempeil",
                "code": "963_peil"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:40.292267Z",
            "last_modified": "2024-09-09T10:27:49.907688Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/d0d97859-4b46-4392-bb29-60fa6948884e/",
            "uuid": "d0d97859-4b46-4392-bb29-60fa6948884e",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2011-11-23T23:15:00Z",
            "end": "2018-09-28T04:45:00Z",
            "value_type": "float",
            "last_value": -0.42,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/92dff793-b6d1-47ba-9e42-c25dff7c1e33/",
                "uuid": "92dff793-b6d1-47ba-9e42-c25dff7c1e33",
                "name": "Haukes, Amstelmeerboezem",
                "code": "KSL-Q-34184_Amstl"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:40.567351Z",
            "last_modified": null,
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/eb582f66-9354-4538-95c5-3d88f00fcf36/",
            "uuid": "eb582f66-9354-4538-95c5-3d88f00fcf36",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2010-01-01T00:00:00Z",
            "end": "2018-08-06T12:30:00Z",
            "value_type": "float",
            "last_value": -1.545,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/abc6840e-a343-4b6c-ba2b-5a54ee2a095f/",
                "uuid": "abc6840e-a343-4b6c-ba2b-5a54ee2a095f",
                "name": "Jisp",
                "code": "958"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:40.820797Z",
            "last_modified": null,
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/bfe6084c-1111-4411-be1f-644c7605fae9/",
            "uuid": "bfe6084c-1111-4411-be1f-644c7605fae9",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2011-07-26T06:00:00Z",
            "end": "2024-12-21T08:00:00Z",
            "value_type": "float",
            "last_value": 1.4,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/8a133ab9-ff4d-4dab-b650-4fe806d1a3b1/",
                "uuid": "8a133ab9-ff4d-4dab-b650-4fe806d1a3b1",
                "name": "Kleinevliet",
                "code": "905"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.063323Z",
            "last_modified": "2024-12-22T15:05:45.608556Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/517ddbf0-6e77-4d32-a75b-1c5d436356ce/",
            "uuid": "517ddbf0-6e77-4d32-a75b-1c5d436356ce",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2011-11-23T23:15:00Z",
            "end": "2018-01-01T15:00:00Z",
            "value_type": "float",
            "last_value": null,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/25135f0d-76f5-4572-97da-59ae860dc390/",
                "uuid": "25135f0d-76f5-4572-97da-59ae860dc390",
                "name": "Kleiweg 3 aanvoer 2, instroom",
                "code": "908_in"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.325227Z",
            "last_modified": null,
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/e0344472-aee4-48f9-900e-18b68ec71b08/",
            "uuid": "e0344472-aee4-48f9-900e-18b68ec71b08",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2010-01-01T00:00:00Z",
            "end": "2018-01-01T15:00:00Z",
            "value_type": "float",
            "last_value": null,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/c693fe79-4dd7-40bb-a9e4-539dd58eb861/",
                "uuid": "c693fe79-4dd7-40bb-a9e4-539dd58eb861",
                "name": "Koog-3 (hist 2014)",
                "code": "MOB_MP2"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.484346Z",
            "last_modified": null,
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/ff04f9f2-4668-4dc3-b105-2f9f06018a17/",
            "uuid": "ff04f9f2-4668-4dc3-b105-2f9f06018a17",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2010-01-01T00:00:00Z",
            "end": "2025-01-19T08:00:00Z",
            "value_type": "float",
            "last_value": 0.0,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/b73e47b3-3795-4bdb-a9b9-ab9e3d280796/",
                "uuid": "b73e47b3-3795-4bdb-a9b9-ab9e3d280796",
                "name": "Krul Mijzen",
                "code": "80"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.568002Z",
            "last_modified": "2025-01-20T14:05:32.047983Z",
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/28aee234-1d75-4975-91de-6b0ae82290fd/",
            "uuid": "28aee234-1d75-4975-91de-6b0ae82290fd",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2010-01-31T23:00:00Z",
            "end": "2018-01-01T15:00:00Z",
            "value_type": "float",
            "last_value": null,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/0879fe06-1ee8-4cc2-ab41-f5a9bd915753/",
                "uuid": "0879fe06-1ee8-4cc2-ab41-f5a9bd915753",
                "name": "MP13 Purmerdijk-Fenixlaantje (hist)",
                "code": "MOB_MP_13-2"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.755833Z",
            "last_modified": null,
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/5f65358f-dc93-407a-9038-2ef3b4d8c7a8/",
            "uuid": "5f65358f-dc93-407a-9038-2ef3b4d8c7a8",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2010-01-31T23:00:00Z",
            "end": "2018-01-01T15:00:00Z",
            "value_type": "float",
            "last_value": null,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/fecc3818-e582-4984-8f66-bb4ed603c1e5/",
                "uuid": "fecc3818-e582-4984-8f66-bb4ed603c1e5",
                "name": "MP14 Hofweg 15 (hist)",
                "code": "MOB_MP_14-2"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.926679Z",
            "last_modified": null,
            "access_modifier": "Public"
        },
        {
            "url": "https://demo.lizard.net/api/v4/timeseries/bbdae00c-5825-4c1c-b948-c8c2f1287b5f/",
            "uuid": "bbdae00c-5825-4c1c-b948-c8c2f1287b5f",
            "code": "H.meting::second::1::900",
            "name": "H.meting",
            "description": "",
            "start": "2010-02-04T14:30:00Z",
            "end": "2018-01-01T15:00:00Z",
            "value_type": "float",
            "last_value": null,
            "interval": 900,
            "observation_type": {
                "url": "https://demo.lizard.net/api/v4/observationtypes/2/",
                "id": 2,
                "code": "H.meting",
                "parameter": "Waterhoogte",
                "unit": "m",
                "scale": "interval",
                "description": "",
                "domain_values": null,
                "reference_frame": "NAP",
                "compartment": "",
                "created": "2015-06-19T09:47:29.345611Z",
                "last_modified": "2019-06-25T07:26:10.441021Z"
            },
            "datasource": null,
            "supplier": null,
            "supplier_code": null,
            "location": {
                "url": "https://demo.lizard.net/api/v4/locations/bbc8554b-ab16-45ce-a85a-a02300203d25/",
                "uuid": "bbc8554b-ab16-45ce-a85a-a02300203d25",
                "name": "MP15 Westerweg, brug Speulderbos (hist 2014)",
                "code": "MOB_MP_15-2"
            },
            "extra_metadata": {},
            "created": "2014-11-05T10:28:41.990408Z",
            "last_modified": null,
            "access_modifier": "Public"
        }
    ]
}