0

I would like to get the list of all cell models in the NeuroML-DB.org. How can I do this programmatically?

Justas
  • 5,718
  • 2
  • 34
  • 36

1 Answers1

0

Using the NeuroML-DB API, you can get the list of all models in the database in JSON format with the following URL:

https://neuroml-db.org/api/models

Which will show JSON like:

enter image description here

To get the list of all cell models, filter the resulting array by Type="CL"

Justas
  • 5,718
  • 2
  • 34
  • 36