diff --git a/jupyter/GAapiTutorial.ipynb b/jupyter/GAapiTutorial.ipynb
index eafbd36a68aa2662f555d3fa0b62c52f92601ced..fbf0eec3dcc445bcb6cd9271e3e8b10242eacd62 100644
--- a/jupyter/GAapiTutorial.ipynb
+++ b/jupyter/GAapiTutorial.ipynb
@@ -9,11 +9,7 @@
     "\n",
     "The purpose of this notebook is to document the API of the Greek Anthology's project. It is available at http://anthologiagraeca.org/api.\n",
     "    \n",
-    "## General information\n",
-    "\n",
-    "### Access the API\n",
-    "\n",
-    "We will start by importing different useful libraries and define our first variables for the requests.\n"
+    "## General information"
    ]
   },
   {
@@ -23,6 +19,9 @@
    "metadata": {},
    "outputs": [],
    "source": [
+    "# Importation of the useful libraries \n",
+    "# Definition of our variables for the requests \n",
+    "\n",
     "import requests\n",
     "import json\n",
     "\n",
@@ -39,7 +38,7 @@
    "id": "initial-integration",
    "metadata": {},
    "source": [
-    "The variable `data` gives us, in json format, the available endpoints"
+    "Here are the avaiable endpoins:"
    ]
   },
   {
@@ -81,11 +80,7 @@
    "id": "higher-bronze",
    "metadata": {},
    "source": [
-    "### The endpoint *passages*\n",
-    "\n",
-    "The first endpoint (`passages`) is the most important : it contains a list of all the epigrams. Let us have a look at it. \n",
-    "\n",
-    "With the variable \"epigrams\", we directly make a request to the API (its URL is built thanks to the variables defined above and below)."
+    "The most important one is the first one: `passages` which contains a list of all the epigrams. Let us have a look at it:"
    ]
   },
   {
@@ -95,16 +90,8 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "epigrams = '/passages'\n",
-    "epigrams_res = requests.get(url+epigrams_ep,parameters).json()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "fb4eb48c",
-   "metadata": {},
-   "source": [
-    "The result of our request provides us with a lot information related to the passages, as seen below : "
+    "epigrams_ep = '/passages'\n",
+    "epigrams = requests.get(url+epigrams_ep,parameters).json()"
    ]
   },
   {
@@ -1825,7 +1812,7 @@
     }
    ],
    "source": [
-    "epigrams_res"
+    "epigrams"
    ]
   },
   {
@@ -1833,7 +1820,7 @@
    "id": "shaped-compound",
    "metadata": {},
    "source": [
-    "As you can see, we have for now 4134 epigrams - the value of `count` :"
+    "As you can see, we have for now 4134 epigrams - the value of `count`."
    ]
   },
   {
@@ -1854,19 +1841,17 @@
     }
    ],
    "source": [
-    "epigrams_res['count']"
+    "epigrams['count']"
    ]
   },
   {
    "cell_type": "markdown",
-   "id": "8ae7a2bd",
+   "id": "annual-louisiana",
    "metadata": {},
    "source": [
-    "### Pagination\n",
-    "\n",
-    "As you might have noticed, all of the information are not displayed on the block above: the list is pagined and one can navigate the pages using the values of `next` and `previous`.\n",
+    "The list is pagined and one can navigate the pages using the values of `next` and `previous`.\n",
     "\n",
-    "By default, each pages has: "
+    "Each pages has: "
    ]
   },
   {
@@ -1887,7 +1872,7 @@
     }
    ],
    "source": [
-    "len(epigrams_res['results'])"
+    "len(epigrams['results'])"
    ]
   },
   {
@@ -1903,6 +1888,26 @@
    "execution_count": 68,
    "id": "religious-smart",
    "metadata": {},
+   "outputs": [],
+   "source": [
+    "parameters.update({'limit':100})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 69,
+   "id": "bacterial-villa",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "epigrams = requests.get(url+epigrams_ep,parameters).json()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 70,
+   "id": "vocational-somerset",
+   "metadata": {},
    "outputs": [
     {
      "data": {
@@ -1910,1058 +1915,994 @@
        "100"
       ]
      },
-     "execution_count": 68,
+     "execution_count": 70,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "parameters.update({'limit':100})\n",
+    "len(epigrams['results'])"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "informed-algorithm",
+   "metadata": {},
+   "source": [
+    "It is possible to filter this list by book (only the epigrams belonging to one particular book), author's main name (their English name) or keyword id.\n",
     "\n",
-    "epigrams_res = requests.get(url+epigrams_ep,parameters).json()\n",
+    "For example: https://anthologiagraeca.org/api/passages/?book__number=5&author__main_name=Meleager&keyword__number=1\n",
     "\n",
-    "len(epigrams_res['results'])"
+    "Will give all the epigrams written by Meleager belonging to book 5 and described with the keyword `1` (Elegiac couplet)."
    ]
   },
   {
    "cell_type": "markdown",
-   "id": "informed-algorithm",
+   "id": "awful-school",
    "metadata": {},
    "source": [
-    "This list can be filtered : \n",
-    "- by book (rendering only the epigrams belonging to one particular book) \n",
-    "- by author's main name (their English name)\n",
-    "- by keyword id (which can be found on the platform : *e.g.* https://anthologiagraeca.org/keywords/1/ is the URL for the keyword \"Elegiac couplet\" ; the id is \"1\". \n",
+    "## Data about epigrams\n",
     "\n",
-    "> For example: https://anthologiagraeca.org/api/passages/?book__number=5&author__main_name=Meleager&keyword__number=1 will give all the epigrams written by Meleager belonging to book 5 and described with the keyword `1` (Elegiac couplet).\n",
+    "Let us have a look at the data avaiable for each epigram. Most of these data are present in the list of epigrams (`epigrams['results]`), but each epigram has its own endpoint.\n",
     "\n",
+    "The endpoint of each is structured on the basis of its book and its number.\n",
     "\n",
-    "In this next cellule, `alldata` contains all the passages' data for all of our 4134 epigrams! "
+    "The Greek Anthology has 16 books, as you can see here:"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 76,
-   "id": "541fbd67",
-   "metadata": {
-    "scrolled": true
-   },
+   "execution_count": 71,
+   "id": "boolean-binary",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "16\n"
+     ]
+    }
+   ],
+   "source": [
+    "number_of_books = requests.get('https://anthologiagraeca.org/api/books/').json()['count']\n",
+    "print(number_of_books)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "speaking-messaging",
+   "metadata": {},
+   "source": [
+    "An epigram is normally identified by a number (for exemple 1 or 145).\n",
+    "\n",
+    "Sometimes there are two or more epigrams for the same number. In these cases letters are used. For exemple 122a.\n",
+    "\n",
+    "Based on this information the epigrem endpoind will be structured as foolows:\n",
+    "\n",
+    "`/passages/urn:cts:greekLit:tlg7000.tlg001.ag:`+bookNumber`.`+epigramNumber+epigramLetter\n",
+    "\n",
+    "This url is avaiable in the list of epigrams as one can see in the filed `url` of each result (let us take the first one here):\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 72,
+   "id": "peaceful-equality",
+   "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "{'count': 4134,\n",
-       " 'next': None,\n",
-       " 'previous': 'https://anthologiagraeca.org/api/passages/?format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&format=json&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&limit=100&page=41',\n",
-       " 'results': [{'id': 3695,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 355,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.355',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.355/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.355/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'οὔπω σοι μογέοντι Τύχη πόρεν ἄξια νίκης:\\n νῖκαι γὰρ τῆς σῆς μείζονες εὐτυχίης.\\n\\n                   ἀλλὰ μέρει πρώτῳ σταθερῷ καὶ ἀρείονι μίμνοις\\n τὴν φθονερὴν τήκων δυσμενέων κραδίην,\\n\\n                  οἵ, σέθεν εἰσορόωντες ἀεὶ νικῶσαν ἱμάσθλην,\\n μέμφονται σφετέρην αἰὲν ἀτασθαλίην.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3573,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 356,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.356',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.356/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.356/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἄλλοις μὲν γεράων πρόφασις χρόνος: οἱ δ᾽ ἐπὶ νίκαις\\nκρινόμενοι πολιῆς οὐ χατέουσι κόμης,\\n ἀλλ᾽ ἀρετῆς, ὅθεν εὖχος ἀνάπτεται. εἷς ἀπὸ τοίων\\nΠορφύριος δώρων δὶς λάχεν ἀγλαΐην,\\n\\n                  οὐκ ἐτέων δεκάδας, νίκης δ᾽ ἑκατοντάδας αὐχῶν\\nπολλάς, καὶ πάσας συγγενέας Χαρίτων.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4133,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 357,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.357',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.357/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.357/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Ἀγχίσην Κυθέρεια, καὶ Ἐνδυμίωνα Σελήνη\\nφίλατο μυθεῦνται τοῖα παλαιγενέες.\\n νῦν δὲ νέος τις μῦθος ἀείσεται, ὡς τάχα Νίκη\\nὄμματα καὶ δίφρους φίλατο Πορφυρίου.'}],\n",
-       "   'authors': [{'tlg_id': 'tlg-4062',\n",
-       "     'names': [{'name': 'Leontius Scholasticus', 'language': 'eng'},\n",
-       "      {'name': 'Λεόντιος ο σχολαστικός', 'language': 'grc'},\n",
-       "      {'name': 'Léontios le scholastique', 'language': 'fra'}]}],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4075,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 358,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.358',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.358/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.358/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'πρεσβυτέρους κοῦρος μὲν ἐών, πρέσβυς δέ τε κούρους\\nνικᾷς, τεθρίππων κέντορας ἀθλοφόρων.\\nἓξ δ᾽ ἐτέων ἀνύσας δεκάδας, στήλην ἐπὶ νίκαις\\nεἷλες, Καλλιόπα, νεύματι κοιρανίης,\\n\\n                  ὄφρα μένοι καὶ ἔπειτα τεὸν κλέος. αἴθε τοι εἴη,\\nὡς κλέος ἀθάνατον, καὶ δέμας ἀθάνατον.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4107,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 359,\n",
+       "'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:1.1/?format=json'"
+      ]
+     },
+     "execution_count": 72,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "epigrams['results'][0]['url']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "graduate-envelope",
+   "metadata": {},
+   "source": [
+    "Let us have a look at the epigram 6.13, which means the epigram number 13 of the book 6:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 73,
+   "id": "invalid-observer",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "ep6_13 = requests.get('https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.13').json()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 74,
+   "id": "biological-chicken",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'id': 394,\n",
+       " 'book': {'url': 'https://anthologiagraeca.org/api/books/5/', 'number': 6},\n",
+       " 'fragment': 13,\n",
+       " 'sub_fragment': '',\n",
+       " 'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:6.13',\n",
+       " 'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.13/',\n",
+       " 'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.13/',\n",
+       " 'manuscripts': ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A142.jpg/pct:10.614886731391586,73.26114119117034,50.355987055016186,4.664723032069971/full/0/default.jpg',\n",
+       "  'http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A143.jpg/pct:30.37231055564613,13.349681305818653,51.660362990702126,7.613758509494807/full/0/default.jpg'],\n",
+       " 'texts': [{'language': 'grc',\n",
+       "   'text': 'οἱ τρισσοί τοι ταῦτα τὰ δίκτυα θῆκαν ὅμαιμοι,\\nἀγρότα Πάν, ἄλλης ἄλλος ἀπ᾽ ἀγρεσίης:\\nὧν ἀπὸ μὲν πτηνῶν Πίγρης τάδε, ταῦτα δὲ Δᾶμις\\nτετραπόδων, Κλείτωρ δ᾽ ὁ τρίτος εἰναλίων.\\nἀνθ᾽ ὧν τῷ μὲν πέμπε δι᾽ ἠέρος εὔστοχον ἄγρην,\\nτῷ δὲ διὰ δρυμῶν, τῷ δὲ δι᾽ ἠϊόνων. '},\n",
+       "  {'language': 'ita',\n",
+       "   'text': 'Tre fratelli ti hanno dedicato queste reti,\\nPan cacciatore, ognuna proveniente da una caccia differente.\\nPigre queste di uccelli, Damis queste,\\ndi bestie feroci, Cleitore, il terzo, di animali marini.\\nIn cambio dai una caccia fortunata al primo in aria\\nal secondo nei boschi e al terzo sulle rive.'},\n",
+       "  {'language': 'fra',\n",
+       "   'text': \"Ces trois frères t'ont dédié ces filets,\\nPan chasseur, chacun issu d'une chasse différente.\\nPigres celles-ci, d'oiseaux, Damis celle-ci,\\nde bêtes féroces, Cléitor, le troisième, d'animaux marins.\\nEn échange donne une bonne chasse au premier dans l'air,\\nau deuxième dans les bois et au troisième sur les rivages.\"},\n",
+       "  {'language': 'fra',\n",
+       "   'text': \"Les trois frères t'ont consacré, chasseur Pan, ces filets, pris par chacun à son genre de chasse: Pigrès, pour les oiseaux; Damis, pour les quadrupèdes; Cléitor, pour le peuple de la mer. Envoie-leur en échange une bonne chasse à l'un par les airs, au second par les bois, à l'autre par les grèves.\"},\n",
+       "  {'language': 'eng',\n",
+       "   'text': 'Huntsman Pan, the three brothers dedicated these nets to thee, each from a different chase: Pigres these from fowl, Damis these from beast, and Clitor his from the denizens of the deep. In return for which send them easily caught game, to the first through the air, to the second through the woods, and to the third through the shore-water.'}],\n",
+       " 'authors': [{'tlg_id': 'tlg-1458',\n",
+       "   'names': [{'name': 'Leonidas of Tarentum', 'language': 'eng'},\n",
+       "    {'name': 'Λεωνίδας ὁ Ταραντῖνος', 'language': 'grc'},\n",
+       "    {'name': 'Leonida di Taranto', 'language': 'ita'},\n",
+       "    {'name': 'Λεωνίδας ᾿Αλεξανδρεύς', 'language': 'grc'},\n",
+       "    {'name': \"Léonidas d'Alexandrie\", 'language': 'fra'},\n",
+       "    {'name': 'Leonidas of Alexandria', 'language': 'eng'}]}],\n",
+       " 'cities': [],\n",
+       " 'keywords': [{'id': 1,\n",
+       "   'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
+       "    {'name': 'distico elegiaco', 'language': 'ita'},\n",
+       "    {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
+       "   'category': [{'name': 'Formes métriques', 'language': 'fra'},\n",
+       "    {'name': 'Metric forms', 'language': 'eng'},\n",
+       "    {'name': 'Metra', 'language': 'lat'},\n",
+       "    {'name': 'Forme metriche', 'language': 'ita'},\n",
+       "    {'name': 'Formas métricas', 'language': 'por'}]},\n",
+       "  {'id': 4,\n",
+       "   'names': [{'name': 'époque hellénistique', 'language': 'fra'},\n",
+       "    {'name': 'epoca ellenistica', 'language': 'ita'},\n",
+       "    {'name': 'hellenistic period', 'language': 'eng'}],\n",
+       "   'category': [{'name': 'Époques', 'language': 'fra'},\n",
+       "    {'name': 'Periods', 'language': 'eng'},\n",
+       "    {'name': 'Tempora', 'language': 'lat'},\n",
+       "    {'name': 'Periodi', 'language': 'ita'},\n",
+       "    {'name': 'Épocas', 'language': 'por'}]},\n",
+       "  {'id': 73,\n",
+       "   'names': [{'name': 'Validé par William', 'language': 'fra'}],\n",
+       "   'category': [{'name': 'Validation', 'language': 'fra'},\n",
+       "    {'name': 'Validation', 'language': 'eng'},\n",
+       "    {'name': 'Contralectus', 'language': 'lat'},\n",
+       "    {'name': 'Validazione', 'language': 'ita'},\n",
+       "    {'name': 'Validação', 'language': 'por'}]},\n",
+       "  {'id': 186,\n",
+       "   'names': [{'name': 'dedicatory', 'language': 'eng'},\n",
+       "    {'name': 'votif (anathématique)', 'language': 'fra'}],\n",
+       "   'category': [{'name': 'Genres', 'language': 'fra'},\n",
+       "    {'name': 'Genres', 'language': 'eng'},\n",
+       "    {'name': 'Genera', 'language': 'lat'},\n",
+       "    {'name': 'Generi', 'language': 'ita'},\n",
+       "    {'name': 'Gêneros', 'language': 'por'}]},\n",
+       "  {'id': 234,\n",
+       "   'names': [{'name': 'Damis', 'language': 'eng'}],\n",
+       "   'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
+       "    {'name': 'Quoted persons', 'language': 'eng'},\n",
+       "    {'name': 'Homines memorati', 'language': 'lat'},\n",
+       "    {'name': 'Persone citate', 'language': 'ita'},\n",
+       "    {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
+       "  {'id': 270,\n",
+       "   'names': [{'name': 'Chasse', 'language': 'fra'}],\n",
+       "   'category': [{'name': 'Motifs', 'language': 'fra'},\n",
+       "    {'name': 'Motifs', 'language': 'eng'},\n",
+       "    {'name': 'Themata', 'language': 'lat'},\n",
+       "    {'name': 'Motivi', 'language': 'ita'},\n",
+       "    {'name': 'Motivos', 'language': 'por'}]},\n",
+       "  {'id': 492,\n",
+       "   'names': [{'name': 'Pan', 'language': 'eng'}],\n",
+       "   'category': [{'name': 'Divinités', 'language': 'fra'},\n",
+       "    {'name': 'Deities', 'language': 'eng'},\n",
+       "    {'name': 'Divinitates', 'language': 'lat'},\n",
+       "    {'name': 'Divinità', 'language': 'ita'},\n",
+       "    {'name': 'Divindades', 'language': 'por'}]},\n",
+       "  {'id': 574,\n",
+       "   'names': [{'name': 'Πίγρης', 'language': 'grc'},\n",
+       "    {'name': 'Pigrès', 'language': 'fra'}],\n",
+       "   'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
+       "    {'name': 'Quoted persons', 'language': 'eng'},\n",
+       "    {'name': 'Homines memorati', 'language': 'lat'},\n",
+       "    {'name': 'Persone citate', 'language': 'ita'},\n",
+       "    {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
+       "  {'id': 575,\n",
+       "   'names': [{'name': 'Κλείτωρ', 'language': 'grc'},\n",
+       "    {'name': 'Cléitor', 'language': 'fra'}],\n",
+       "   'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
+       "    {'name': 'Quoted persons', 'language': 'eng'},\n",
+       "    {'name': 'Homines memorati', 'language': 'lat'},\n",
+       "    {'name': 'Persone citate', 'language': 'ita'},\n",
+       "    {'name': 'Pessoas citadas', 'language': 'por'}]}],\n",
+       " 'scholia': [{'book': 6,\n",
+       "   'fragment': 13,\n",
        "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.359',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.359/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.359/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'σῆς τόδε διφρελάτειρα τὸ χάλκεον ἄνθετο Νίκα\\nεἴκηλον μορφᾶς, Καλλιόπα, ζαθέας,\\n πρέσβυς ὅτι σφριγόωντας ἐν ἱπποδάμῳ πλέον ἀλκᾷ\\n νίκησας, γεραροὺς δ᾽ ὢν νέος ἐν σοφίῃ.\\n\\n                   ἔνθεν ἐλευθερόπαις Βενέτων σέο πήξατο δῆμος\\n δοιά, τὰ μὲν τέχνας ἆθλα, τὰ δὲ σθένεος.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3867,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 360,\n",
+       "   'number': 1,\n",
+       "   'url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.1/'},\n",
+       "  {'book': 6,\n",
+       "   'fragment': 13,\n",
        "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.360',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.360/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.360/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'σὸν γῆρας νεότητα τεὴν ὑπερέδραμε νίκαις,\\n καὶ πάντων κρατέεις πάντοτε, Καλλιόπα.\\n ἔνθεν ἄναξ καὶ δῆμος ἐλεύθερος αὖθις ἐγείρει\\nτοῦτο γέρας, σοφίης μνῆμα καὶ ἠνορέης:.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3536,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 361,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.361',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.361/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.361/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'οὗτος, ἐγερσιθέατρε, τεὸς τύπος, ὅν τοι ἐγείρει\\nἑσμὸς ἀριζήλων, Καλλιόπα, στεφάνων.\\nοὔτε γὰρ ἡνίοχός σε παρήπαφεν, οὔτε χαλινοῖς\\nδύσστομος ἱππείη σοῖς ἀπίθησε γένυς.\\n\\n                   μοῦνος δὴ νίκης γέρας ἄρνυσαι. ἦ παρὰ πᾶσι\\n δόξαν ἔχεις ἀεθλῶν ἆθλα λιπεῖν ἑτέροις,'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3729,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 362,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.362',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.362/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.362/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Καλλιόπα κλυτόμοχθε, τί σοι πλέον, ὅττι γεραίρει\\n εἰκόνι χαλκοτύπῳ σοὺς βασιλεὺς καμάτους,\\n δῆμος ὁ μυριόφωνος, ὅλη πτόλις; εὖτε καὶ αὐτὴ\\n δυσμενέων παλάμη σοῖς ἐπένευσε πόνοις.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3652,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 363,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.363',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.363/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.363/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'μητέρες εὐάθλων γεράων φρένες, οὐ κράτος ἥβης,\\nοὐ τάχος ἱπποσύνης, οὐ χρόνος εὐτυχίης.\\n ἱλήκοι, Φαυστῖνε, τεὸς νόος, ᾧ τάδε πάντα\\nἕσπεται, ᾧ Νίκη σύντροφος ἀθάνατος.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3905,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 364,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.364',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.364/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.364/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'πρίν σε νέον, Φαυστῖνε, νόος πεφόβητο γερόντων:\\n νῦν δέ σε πρεσβυγενῆ κάρτος ἔφριξε νέων.\\nδεύτερα δ᾽ εὕρετο πάντα τεὸς πόνος, ὅς σε γεραίρει\\n πρέσβυν ἐν ἠιθέοις, ἐν δὲ γέρουσι νέον.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3811,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 365,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.365',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.365/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.365/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἐξότε Κωνσταντῖνος ἔδυ δόμον Ἄϊδος εἴσω,\\n πλῆτο κατηφείης ἱπποσύνης στάδιον,\\n τερπωλὴ δ᾽ ἀπέλειπε θεήμονας: οὐδ᾽ ἐν ἀγυιαῖς\\n κείνας τὰς φιλίας ἐστὶν ἰδεῖν ἔριδας.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4115,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 366,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.366',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.366/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.366/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'εἰκόνα, Κωνσταντῖνε, τεὴν ἀνέθεντο πολῖται,\\nμυρόμενοι, ψυχῆς τέρψιν ἀποιχομένης.\\n σοὶ κλέος ὁππότε δῆμος ἐπεσφρήγιζε θανόντι,\\n μνήσατο σῶν καμάτων καὶ μετὰ πότμον ἄναξ:\\n\\n                  οὕνεκεν ἱπποσύνης φιλοκέρτομος ὤλετο τέχνη,\\nἐν σοὶ παυσαμένη πᾶσα καὶ ἀρξαμένη.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3668,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 367,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.367',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.367/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.367/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'εἰσέτι μὲν ζώοντι πόλις ποτὲ Κωνσταντίνῳ\\nεἰκόνα χαλκείην βαιὸν ἔκρινε γέρας:\\nᾔδεε γὰρ πᾶς δῆμος ὅσους ἐπὶ κύδεϊ νίκης\\n αἰὲν ἀεθλεύων ἀμφέθετο στεφάνους.\\n\\n                  ὡς δ᾽ ἔθανεν, ποθέουσα, φίλον τύπον ἄνθετο τοῦδε,\\nὄφρα καὶ ἐσσομένοις μνῆστιν ἔχοι καμάτων.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3930,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 368,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.368',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.368/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.368/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'οἱ Βένετοι Πρασίνοισιν ἐναντίοι αἰὲν ἐόντες\\n εἰς ἕν᾽ ὁμοφροσύνης ἐξεβόησαν ὅρον,\\nὥστε σε, Κωνσταντῖνε, λαβεῖν ἐπιτύμβιον εὖχος,\\nπᾶσιν ἀειδόμενον, πᾶσιν ἀρεσκόμενον.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3603,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 369,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.369',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.369/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.369/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Ἀντολίης, δύσιός τε, μεσημβρίης τε, καὶ ἄρκτου\\nσὸς δρόμος ὑψιφαὴς ἀμφιβέβηκεν ὅρους,\\n ἄφθιτε Κωνσταντῖνε. θανεῖν δέ σε μή τις ἐνίσπῃ:\\n τῶν γὰρ ἀνικήτων ἅπτεται οὐδ᾽ Ἀίδης.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3674,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 370,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.370',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.370/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.370/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἐγγύθι τῆς σφετέρης γενεῆς λάχεν εἰκόνα τήνδε:\\nἔπρεπε γὰρ τρισσοῖς εἰν ἑνὶ χῶρον ἔχειν,\\nοἳ καὶ ἐνὶ σταδίοις ἀρετῆς κλέος εἴκελον εὗρον,\\n νηρίθμων στεφάνων ἐσμὸν ἑλόντες ἴσον.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4110,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 371,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.371',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.371/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.371/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'τὸν Φαυστινιάδην πόλις ἄνθετο Κωνσταντῖνον,\\nγείτονα μὲν γενεῆς, κρέσσονα δ᾽ ἡνιόχων.\\n\\n                  δὴν γὰρ ἀεθλεύσας οὐκ ἤμβροτεν, ἀλλ᾽ ἐπὶ νίκῃ\\n παύσατο, σὺν νίκῃ καὶ πάρος ἀρξάμενος,\\n\\n                  ὃν καὶ κοῦρον ἐόντα παλαίτεροι ἡνιοχῆες,\\n στεψάμενοι σταδίοις, εἷσαν ἀγωνοθέτην.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3863,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 372,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.372',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.372/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.372/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'σοὶ τόδε, Κωνσταντῖνε, τεὴ τροφὸς ὤπασε Νίκη\\n παιδόθεν ἑσπομένη πᾶσαν ἐφ᾽ ἡλικίην.\\n πέντε γὰρ ἐν σταδίοις δεκάδας τελέσας ἐνιαυτῶν,\\nοὐδ᾽ ἴσον, οὐδ᾽ ὀλίγον εὕρεο λειπόμενον.\\n\\n                   ἀλλ᾽ ἔτι κουρίζων τε καὶ ἄχνοος ἄνδρας ἐνίκας,\\nἥλικας ἡβήσας, γηραλέος δὲ νέους.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3949,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 373,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.373',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.373/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.373/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἤθελε Κωνσταντῖνον ἀεὶ πτόλις ἡνιοχεύειν:\\n ἤθελεν, ἀλλὰ πόθῳ οὐκ ἐπένευσε Φύσις.\\nἔνθεν ἑῶν τόδ᾽ ἄγαλμα παραίφασιν εὗρεν ἐρώτων,\\nὄφρα ἑ μὴ λήθη καὶ χρόνος ἀμφιβάλοι,\\n\\n                   ἀλλὰ μένοι ποθέουσιν ἔρως, ζῆλος δ᾽ ἐλατῆρσι,\\n κόσμος δὲ σταδίοις, ἐσσομένοις δὲ φάτις.\\nκαί τις ἰδὼν μετόπισθε χερείονας ἡνιοχῆας\\nὀλβίσσει προτέρην, ἥ μιν ἴδεν, γενεήν.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3656,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 374,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.374',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.374/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.374/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'πέντε καὶ εἴκοσι μοῦνος ἀέθλια Κωνσταντῖνος\\n εἰς μίαν ἠριγένειαν ἑλὼν, ἤμειψε μὲν ἵππους\\n\\n                  ἀντιπάλοις: κείνους δὲ λαβών, οὓς πρόσθεν ἐνίκα,\\n τοῖς αὐτοῖς πάλιν εἷλε μίαν τε καὶ εἴκοσι νίκας.\\n\\n                   πολλάκι δ᾽ ἀμφοτέρων μερέων ἔρις ἔμπεσε δήμῳ,\\nτίς  μιν ἔχοι: κείνῳ δὲ δόσαν κρίσιν ἐκ δύο πέπλων.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3517,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 375,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.375',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.375/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.375/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἔγρεο, Κωνσταντῖνε: τί χάλκεον ὕπνον ἰαύεις;\\n σεῖο δίφρους ποθέει δῆμος ἐνὶ σταδίοις,\\n σῆς τε διδασκαλίης ἐπιδευέες ἡνιοχῆες\\nεἵαται ὀρφανικοῖς παισὶν ὁμοιότατοι.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3983,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 376,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.376',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.376/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.376/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἀμφοτέροις εἷς μοῦνος ἀριστεύσας παρὰ δήμοις\\n κῦδος ἀπ᾽ ἀμφοτέρων ἔλλαχεν Οὐράνιος,\\nεἰσέτι διφρεύων. τὸ δέ οἱ γέρας ἤλυθε πρῶτον\\nἐκ Πρασίνων, οἷς δὴ γείτονα χῶρον ἔχει.\\n\\n                  αὐτοὶ καὶ σταδίοιο πεπαυμένον ἤγαγον αὖθις\\nἐς δίφρους, νίκης μνωόμενοι προτέρης.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4134,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 377,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.377',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.377/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.377/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'παυσάμενον σταδίων βασιλεὺς ἐπ᾽ ἀγακλέι νίκῃ\\nαὖθις ὑπὲρ δίφρων βῆσεν ἀεθλοφόρων\\nοὐράνιον δήμοισι, φέρων φέρων χάριν οὐ ποθέει γὰρ\\nἡ πόλις Οὐρανίου νόσφιν ἀεθλοσύνας.\\n\\n                   τοὔνεκα διφρεύοντα τὸ δεύτερον, ὑστατίης τε\\n νίκης καὶ προτέρης στῆσεν ἀγασσαμένη.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4067,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 378,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.378',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.378/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.378/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'οὐράνιος Νίκαιαν ἔχει πέλας ὁπλοτέρην τε\\n Ῥώμην, τῆς μὲν ἐών, τῇ δ᾽ ἔνι κῦδος ἑλών.\\nνικᾷ δ᾽ ἀμφοτέρωθεν, ἐπεὶ περιδέξιος ἦεν\\nτῇ καὶ τῇ προθέειν ἠὲ παρεξελάαν.\\n\\n                  τοὔνεκα καὶ χρυσέῳ μιν ἀνεγράψαντο μετάλλῳ,\\n κυδίστῳ κτεάνων κύδιμον ἡνίοχον.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4066,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 379,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.379',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.379/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.379/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'τὸν θρασὺν ἡνιοχῆα λελασμένον ἅρματος ἄθλων\\n ἐνθάδ᾽ Ἀναστάσιον κείμενον οὖδας ἔχει,\\nὃς τόσσους ἀνεδήσατο πρὶν στεφάνους, ὅσα ἄλλοι\\nἔδρακον ἡνιόχων ἤματα ἱππασίης.'}],\n",
-       "   'authors': [{'tlg_id': 'tlg-4049',\n",
-       "     'names': [{'name': 'thomas', 'language': 'grc'}]}],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3535,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 380,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.380',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.380/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.380/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἐν γῇ κρατήσας παντὸς ἁρματηλάτου\\n καλῶς ἐπήρθη καὶ πρὸς αἰθέρα τρέχειν\\nΠορφύριος, τὸ θαῦμα δήμου Βενέτων.\\n νικῶν γὰρ οὗτος πάντα γῆς διφρηλάτην,\\n\\n                   ἄνεισιν, ὡς ἂν καὶ σὺν ἡλίῳ δράμῃ.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3818,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 381,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.381',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.381/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.381/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'ἴουλον ἀνθῶν πρῶτον οὗτος ἡνίας\\n Πορφύριος Κάλχαντος εἷλκε Βενέτου.\\nἐκπλήττομαι δὲ πῶς γράφει χεὶρ ἐμπνόους\\nτούτου τις ἵππους. ^ καὶ γὰρ ἂν πλήξῃ πάλιν,\\n\\n                  οἶμαι, δραμεῖται νῖκος εὑρεῖν καὶ πάλιν.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3894,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 382,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.382',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.382/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.382/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'σκόπει τὸ δρᾶμα μηχανουργοῦ τοῦ δόμου:\\nεἰ μὴ γὰρ ἐστέγαστο καρτερᾷ σκέπᾐ,\\n πρὸς οὐρανοὺς ἂν ὦρτο Φαυστῖνος τρέχων\\nὡς ζῶν σὺν ἵπποις, τὸ κλέος πρὶν Πρασίνων.\\n\\n                  ἆρον στέγος γάρ, καὶ φθάνει πρὸς αἰθέρα.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4009,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 383,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.383',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.383/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.383/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Φαυστῖνος οὗτος, ὁ πρὶν ἁρματηλάτης,\\nὃν δῆμος εὑρὼν τοῦ μέρους τῶν Πρασίνων\\n τὴν ἧτταν ἠγνόησε παντελῶς δρόμῳ.\\nγέρων μὲν ἦν γάρ, ὡς βλέπεις: τὸ δὲ σθένος\\n\\n                  ἦν τις νεάζων, οὐδ᾽ ὅλως ἡττημένος.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3638,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 384,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.384',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.384/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.384/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'λευκοῦ μεθέλκων ἡνίας Κωνσταντίνος,\\nἂν μὴ καθεῖρκτο στερρότητι τοῦ δόμου,\\nτοὺς τρεῖς ἐνίκα, πρῶτος αἰθέρα φθάνων.\\n πνοῆς ἄνευθεν εἶδες αἰθεροδρόμον:\\n\\n                   τέχνη με πείθει τοῦτον ἔμπνοον βλέπειν.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3558,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 385,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.385',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.385/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.385/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Κωνσταντίνος γ᾽ ἦν, ἀλλὰ τοῖς πάλαι χρόνοις\\n λευκῆς χρόας τέθριππον ἕλκων εὐστρόφως.\\nἀφ᾽ οὗ δὲ τοῦτον ἥρπασεν Χάρων, ἔδυ\\nτὸ φῶς ἁμίλλης ἱππικῶν δρομημάτων,\\n\\n                  καὶ πᾶσα τέρψις τοῦ θεάτρου, καὶ τέχνη.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 4125,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 386,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.386',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.386/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.386/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'χεὶρ οἶδε γεννᾶν τοὺς πάλαι τεθνηκότας.\\nἸουλιανὸς καὶ γὰρ ὡς πάλαι σθένει,\\nἕλκων, μεθέλκων Ῥουσίου τὰς ἡνίας:\\n καὶ νῦν γραφεὶς ἕστηκεν ὑψοῦ σὺν δίφρῳ:\\n\\n                  τὸ νεῦμα χεὶρ μένει δέ: τὴν νύσσαν δότε.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3523,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 387,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.387',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.387/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.387/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Ἰουλιανὸς οὗτος ἅρμα Ῥουσίου\\n ἔχων, ἐνίκα τοὺς ἐναντίους δρόμῳ.\\n ἀλλ᾽ εἰ γραφεὺς παρεῖχε καὶ πνοῆς χάριν,\\nἕτοιμός ἐστι καὶ πάλιν διφρηλάτης\\n\\n                   καὶ πρόσθεν ἐλθεῖν, καὶ λαβεῖν καὶ τὸ στέφος.'}],\n",
-       "   'authors': [],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []},\n",
-       "  {'id': 3946,\n",
-       "   'book': {'url': 'https://anthologiagraeca.org/api/books/16/?format=json',\n",
-       "    'number': 16},\n",
-       "   'fragment': 388,\n",
-       "   'sub_fragment': '',\n",
-       "   'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:16.388',\n",
-       "   'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.388/?format=json',\n",
-       "   'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:16.388/',\n",
-       "   'manuscripts': [],\n",
-       "   'texts': [{'language': 'grc',\n",
-       "     'text': 'Στέφος πλέκων ποθ᾽, εὗρον\\nἐν τοῖς ῥόδοις Ἔρωτα:\\n καὶ τῶν πτερῶν κατασχὼν,\\n ἐβάπτις1᾽ εἰς τὸν οἶνον.\\n\\n                   λαβὼν δ᾽ ἔπιον αὐτόν\\n καὶ νῦν ἔσω μελῶν μου\\nπτεροῖσι γαργαλίζει.'}],\n",
-       "   'authors': [{'tlg_id': 'tlg-4050',\n",
-       "     'names': [{'name': 'Ἰουλιανὸς ὁ Αἰγύπτιος', 'language': 'grc'},\n",
-       "      {'name': \"Julien l'Égyptien\", 'language': 'fra'},\n",
-       "      {'name': 'Julianus', 'language': 'eng'}]}],\n",
-       "   'cities': [],\n",
-       "   'keywords': [],\n",
-       "   'scholia': [],\n",
-       "   'comments': [],\n",
-       "   'external_references': [],\n",
-       "   'internal_references': [],\n",
-       "   'media': []}]}"
+       "   'number': 2,\n",
+       "   'url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.2/'}],\n",
+       " 'comments': [{'description': ['# Fresque de Pompéi\\n\\n Cette épigramme est représentée, selon Gutzwiller, dans une fresque de Pompéi'],\n",
+       "   'language': ['fra']},\n",
+       "  {'description': [\"# Imitations de 6.13\\n\\n C'est vraisemblablement cette pièce de Léonidas qui a inspiré les épigr. 11-16 et 179-187, entre autres 14 (d'Antipater) et 16 (d'Archias), qui n'en sont que des imitations assez serviles. Elle était, en tous cas, une des plus classiques de toute la série; car c'est celle-là qu'on avait gravée sur le mur d'une maison de Pompéi pour servir de légende à une scène où était peinte cette offrande de trois chasseurs; mais il ne subsiste, des trois distiques que comportait l'inscription, que cinq lettres disséminées et les six premières du v. 6; et il a fallu toute la perspicacité de Dilthey pour y reconnaître des fragments de notre épigramme. \\n-P. Waltz \"],\n",
+       "   'language': ['fra']}],\n",
+       " 'external_references': [],\n",
+       " 'internal_references': [{'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.11/',\n",
+       "   'reference_type': 'Default'},\n",
+       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.14/',\n",
+       "   'reference_type': 'Default'},\n",
+       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.179/',\n",
+       "   'reference_type': 'Default'},\n",
+       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.186/',\n",
+       "   'reference_type': 'Default'},\n",
+       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.187/',\n",
+       "   'reference_type': 'Default'}],\n",
+       " 'media': []}"
+      ]
+     },
+     "execution_count": 74,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "residential-encyclopedia",
+   "metadata": {},
+   "source": [
+    "The epigram number is in the key `fragment` and the letter (when it has one) in the key `sub_fragment`)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "impaired-percentage",
+   "metadata": {},
+   "source": [
+    "### Images of the manuscript (Codex Palatinus 23)\n",
+    "\n",
+    "For each epigram one can retrieve a list of the IIIf images of the Codex Palatinus 23 (digitalized high quality version avaiable on the Heidelberg Library website) which correspons to the epigram in the key `manuscripts`.\n",
+    "\n",
+    "(For more information about the manuscript and its images, cf. the section \"Manuscript Annotation API\" in this document.)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 75,
+   "id": "martial-blowing",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A142.jpg/pct:10.614886731391586,73.26114119117034,50.355987055016186,4.664723032069971/full/0/default.jpg',\n",
+       " 'http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A143.jpg/pct:30.37231055564613,13.349681305818653,51.660362990702126,7.613758509494807/full/0/default.jpg']"
+      ]
+     },
+     "execution_count": 75,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13['manuscripts']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "english-warren",
+   "metadata": {},
+   "source": [
+    "### Texts\n",
+    "\n",
+    "Each epigram has a list of texts wich are associated to it. These are one or more greek editions of the text and a set of translations:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 76,
+   "id": "filled-spencer",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'language': 'grc',\n",
+       "  'text': 'οἱ τρισσοί τοι ταῦτα τὰ δίκτυα θῆκαν ὅμαιμοι,\\nἀγρότα Πάν, ἄλλης ἄλλος ἀπ᾽ ἀγρεσίης:\\nὧν ἀπὸ μὲν πτηνῶν Πίγρης τάδε, ταῦτα δὲ Δᾶμις\\nτετραπόδων, Κλείτωρ δ᾽ ὁ τρίτος εἰναλίων.\\nἀνθ᾽ ὧν τῷ μὲν πέμπε δι᾽ ἠέρος εὔστοχον ἄγρην,\\nτῷ δὲ διὰ δρυμῶν, τῷ δὲ δι᾽ ἠϊόνων. '},\n",
+       " {'language': 'ita',\n",
+       "  'text': 'Tre fratelli ti hanno dedicato queste reti,\\nPan cacciatore, ognuna proveniente da una caccia differente.\\nPigre queste di uccelli, Damis queste,\\ndi bestie feroci, Cleitore, il terzo, di animali marini.\\nIn cambio dai una caccia fortunata al primo in aria\\nal secondo nei boschi e al terzo sulle rive.'},\n",
+       " {'language': 'fra',\n",
+       "  'text': \"Ces trois frères t'ont dédié ces filets,\\nPan chasseur, chacun issu d'une chasse différente.\\nPigres celles-ci, d'oiseaux, Damis celle-ci,\\nde bêtes féroces, Cléitor, le troisième, d'animaux marins.\\nEn échange donne une bonne chasse au premier dans l'air,\\nau deuxième dans les bois et au troisième sur les rivages.\"},\n",
+       " {'language': 'fra',\n",
+       "  'text': \"Les trois frères t'ont consacré, chasseur Pan, ces filets, pris par chacun à son genre de chasse: Pigrès, pour les oiseaux; Damis, pour les quadrupèdes; Cléitor, pour le peuple de la mer. Envoie-leur en échange une bonne chasse à l'un par les airs, au second par les bois, à l'autre par les grèves.\"},\n",
+       " {'language': 'eng',\n",
+       "  'text': 'Huntsman Pan, the three brothers dedicated these nets to thee, each from a different chase: Pigres these from fowl, Damis these from beast, and Clitor his from the denizens of the deep. In return for which send them easily caught game, to the first through the air, to the second through the woods, and to the third through the shore-water.'}]"
+      ]
+     },
+     "execution_count": 76,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13['texts']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "induced-range",
+   "metadata": {},
+   "source": [
+    "### Authors\n",
+    "\n",
+    "All the epigrams in our database should have at least the greek text.\n",
+    "\n",
+    "An epigram is almost always associated to one or more authors (it depends on the attributions which are often uncertain):"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 77,
+   "id": "chronic-giving",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'tlg_id': 'tlg-1458',\n",
+       "  'names': [{'name': 'Leonidas of Tarentum', 'language': 'eng'},\n",
+       "   {'name': 'Λεωνίδας ὁ Ταραντῖνος', 'language': 'grc'},\n",
+       "   {'name': 'Leonida di Taranto', 'language': 'ita'},\n",
+       "   {'name': 'Λεωνίδας ᾿Αλεξανδρεύς', 'language': 'grc'},\n",
+       "   {'name': \"Léonidas d'Alexandrie\", 'language': 'fra'},\n",
+       "   {'name': 'Leonidas of Alexandria', 'language': 'eng'}]}]"
+      ]
+     },
+     "execution_count": 77,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13['authors']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "146f924b",
+   "metadata": {},
+   "source": [
+    "### Keywords\n",
+    "\n",
+    "Each epigram can be associated with some keywords.\n",
+    "\n",
+    "One can have more information about the keywords on its own endpoint, structured as follow : \n",
+    "\n",
+    "`https://anthologiagraeca.org/api/keywords/`+keyword_id "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 78,
+   "id": "f68ced91",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'id': 1,\n",
+       "  'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
+       "   {'name': 'distico elegiaco', 'language': 'ita'},\n",
+       "   {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
+       "  'category': [{'name': 'Formes métriques', 'language': 'fra'},\n",
+       "   {'name': 'Metric forms', 'language': 'eng'},\n",
+       "   {'name': 'Metra', 'language': 'lat'},\n",
+       "   {'name': 'Forme metriche', 'language': 'ita'},\n",
+       "   {'name': 'Formas métricas', 'language': 'por'}]},\n",
+       " {'id': 4,\n",
+       "  'names': [{'name': 'époque hellénistique', 'language': 'fra'},\n",
+       "   {'name': 'epoca ellenistica', 'language': 'ita'},\n",
+       "   {'name': 'hellenistic period', 'language': 'eng'}],\n",
+       "  'category': [{'name': 'Époques', 'language': 'fra'},\n",
+       "   {'name': 'Periods', 'language': 'eng'},\n",
+       "   {'name': 'Tempora', 'language': 'lat'},\n",
+       "   {'name': 'Periodi', 'language': 'ita'},\n",
+       "   {'name': 'Épocas', 'language': 'por'}]},\n",
+       " {'id': 73,\n",
+       "  'names': [{'name': 'Validé par William', 'language': 'fra'}],\n",
+       "  'category': [{'name': 'Validation', 'language': 'fra'},\n",
+       "   {'name': 'Validation', 'language': 'eng'},\n",
+       "   {'name': 'Contralectus', 'language': 'lat'},\n",
+       "   {'name': 'Validazione', 'language': 'ita'},\n",
+       "   {'name': 'Validação', 'language': 'por'}]},\n",
+       " {'id': 186,\n",
+       "  'names': [{'name': 'dedicatory', 'language': 'eng'},\n",
+       "   {'name': 'votif (anathématique)', 'language': 'fra'}],\n",
+       "  'category': [{'name': 'Genres', 'language': 'fra'},\n",
+       "   {'name': 'Genres', 'language': 'eng'},\n",
+       "   {'name': 'Genera', 'language': 'lat'},\n",
+       "   {'name': 'Generi', 'language': 'ita'},\n",
+       "   {'name': 'Gêneros', 'language': 'por'}]},\n",
+       " {'id': 234,\n",
+       "  'names': [{'name': 'Damis', 'language': 'eng'}],\n",
+       "  'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
+       "   {'name': 'Quoted persons', 'language': 'eng'},\n",
+       "   {'name': 'Homines memorati', 'language': 'lat'},\n",
+       "   {'name': 'Persone citate', 'language': 'ita'},\n",
+       "   {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
+       " {'id': 270,\n",
+       "  'names': [{'name': 'Chasse', 'language': 'fra'}],\n",
+       "  'category': [{'name': 'Motifs', 'language': 'fra'},\n",
+       "   {'name': 'Motifs', 'language': 'eng'},\n",
+       "   {'name': 'Themata', 'language': 'lat'},\n",
+       "   {'name': 'Motivi', 'language': 'ita'},\n",
+       "   {'name': 'Motivos', 'language': 'por'}]},\n",
+       " {'id': 492,\n",
+       "  'names': [{'name': 'Pan', 'language': 'eng'}],\n",
+       "  'category': [{'name': 'Divinités', 'language': 'fra'},\n",
+       "   {'name': 'Deities', 'language': 'eng'},\n",
+       "   {'name': 'Divinitates', 'language': 'lat'},\n",
+       "   {'name': 'Divinità', 'language': 'ita'},\n",
+       "   {'name': 'Divindades', 'language': 'por'}]},\n",
+       " {'id': 574,\n",
+       "  'names': [{'name': 'Πίγρης', 'language': 'grc'},\n",
+       "   {'name': 'Pigrès', 'language': 'fra'}],\n",
+       "  'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
+       "   {'name': 'Quoted persons', 'language': 'eng'},\n",
+       "   {'name': 'Homines memorati', 'language': 'lat'},\n",
+       "   {'name': 'Persone citate', 'language': 'ita'},\n",
+       "   {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
+       " {'id': 575,\n",
+       "  'names': [{'name': 'Κλείτωρ', 'language': 'grc'},\n",
+       "   {'name': 'Cléitor', 'language': 'fra'}],\n",
+       "  'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
+       "   {'name': 'Quoted persons', 'language': 'eng'},\n",
+       "   {'name': 'Homines memorati', 'language': 'lat'},\n",
+       "   {'name': 'Persone citate', 'language': 'ita'},\n",
+       "   {'name': 'Pessoas citadas', 'language': 'por'}]}]"
+      ]
+     },
+     "execution_count": 78,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13['keywords']"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 79,
+   "id": "ab6d207f",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "keyword_1 = requests.get(\"https://anthologiagraeca.org/api/keywords/1/\").json()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 80,
+   "id": "1007c1ab",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'id': 1,\n",
+       " 'url': 'https://anthologiagraeca.org/api/keywords/1/',\n",
+       " 'category': {'id': 1,\n",
+       "  'url': 'https://anthologiagraeca.org/api/keyword_categories/1/',\n",
+       "  'names': [{'name': 'Formes métriques', 'language': 'fra'},\n",
+       "   {'name': 'Metric forms', 'language': 'eng'},\n",
+       "   {'name': 'Metra', 'language': 'lat'},\n",
+       "   {'name': 'Forme metriche', 'language': 'ita'},\n",
+       "   {'name': 'Formas métricas', 'language': 'por'}]},\n",
+       " 'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
+       "  {'name': 'distico elegiaco', 'language': 'ita'},\n",
+       "  {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
+       " 'alternative_urns': [{'urn': 'https://www.wikidata.org/wiki/Q2082412'}]}"
+      ]
+     },
+     "execution_count": 80,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "keyword_1"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "contained-christmas",
+   "metadata": {},
+   "source": [
+    "keywords are organized in `categories` and each keyword **must** belong to a category.\n",
+    "\n",
+    "The list of the categories is here: https://anthologiagraeca.org/api/keyword_categories/"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "american-activity",
+   "metadata": {},
+   "source": [
+    "### Cities (places)\n",
+    "\n",
+    "An epigram can be associated with some places (cities or countries or whatever can have geocoordinates). Epigram 6.13 has no cities associated. Let us look to another epigram:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 81,
+   "id": "alike-kazakhstan",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'id': 45, 'names': [{'name': 'Lindus', 'language': 'eng'}]},\n",
+       " {'id': 61,\n",
+       "  'names': [{'name': 'Atenas', 'language': 'por'},\n",
+       "   {'name': 'Classical Athens', 'language': 'eng'},\n",
+       "   {'name': 'Antigua Atenas', 'language': 'spa'},\n",
+       "   {'name': 'Athènes', 'language': 'fra'},\n",
+       "   {'name': 'Atene', 'language': 'ita'},\n",
+       "   {'name': 'Athenae antiquae', 'language': 'lat'}]},\n",
+       " {'id': 73,\n",
+       "  'names': [{'name': 'Sparta', 'language': 'eng'},\n",
+       "   {'name': 'Sparte', 'language': 'fra'},\n",
+       "   {'name': 'Esparta', 'language': 'spa'},\n",
+       "   {'name': 'Sparta', 'language': 'ita'},\n",
+       "   {'name': 'Sparta', 'language': 'lat'},\n",
+       "   {'name': 'Esparta', 'language': 'por'}]},\n",
+       " {'id': 78,\n",
+       "  'names': [{'name': 'Antigua Corinto', 'language': 'spa'},\n",
+       "   {'name': 'Ancient Corinth', 'language': 'eng'},\n",
+       "   {'name': 'Corinthe antique', 'language': 'fra'},\n",
+       "   {'name': 'Corinto', 'language': 'ita'}]},\n",
+       " {'id': 89,\n",
+       "  'names': [{'name': 'Mytilene', 'language': 'eng'},\n",
+       "   {'name': 'Mytilène', 'language': 'fra'},\n",
+       "   {'name': 'Mitilene', 'language': 'spa'},\n",
+       "   {'name': 'Mitilene', 'language': 'ita'},\n",
+       "   {'name': 'Mytilene', 'language': 'lat'}]},\n",
+       " {'id': 128,\n",
+       "  'names': [{'name': 'Milet', 'language': 'fra'},\n",
+       "   {'name': 'Mileto', 'language': 'spa'},\n",
+       "   {'name': 'Mileto', 'language': 'por'},\n",
+       "   {'name': 'Mileto', 'language': 'ita'},\n",
+       "   {'name': 'Miletus', 'language': 'eng'},\n",
+       "   {'name': 'Miletus', 'language': 'lat'},\n",
+       "   {'name': 'Mileto', 'language': 'spa'},\n",
+       "   {'name': 'Mileto', 'language': 'por'},\n",
+       "   {'name': 'Milet', 'language': 'fra'},\n",
+       "   {'name': 'Mileto', 'language': 'ita'},\n",
+       "   {'name': 'Miletus', 'language': 'eng'},\n",
+       "   {'name': 'Miletus', 'language': 'lat'}]},\n",
+       " {'id': 129,\n",
+       "  'names': [{'name': 'Priene', 'language': 'eng'},\n",
+       "   {'name': 'Priene', 'language': 'spa'},\n",
+       "   {'name': 'Priène', 'language': 'fra'},\n",
+       "   {'name': 'Priene', 'language': 'ita'},\n",
+       "   {'name': 'Priene', 'language': 'por'},\n",
+       "   {'name': 'Priene', 'language': 'lat'}]}]"
       ]
      },
-     "execution_count": 76,
+     "execution_count": 81,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "url = 'http://anthologiagraeca.org/api/passages'\n",
-    "results = []\n",
-    "pagination = True\n",
-    "while pagination == True :\n",
-    "    alldata = requests.get(url, parameters).json()\n",
-    "    for result in alldata['results'] :\n",
-    "        results.append(result)\n",
-    "    if alldata['next'] is None:\n",
-    "        pagination = False\n",
-    "    else:\n",
-    "        url = alldata['next']\n",
-    "        \n",
-    "alldata"
+    "ep7_81 = requests.get('https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:7.81').json()\n",
+    "ep7_81['cities']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "norman-drilling",
+   "metadata": {},
+   "source": [
+    "And let us have a look to one of these cities:"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 77,
-   "id": "73c932c5",
+   "execution_count": 82,
+   "id": "local-assessment",
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "4134"
+       "{'url': 'https://anthologiagraeca.org/api/cities/89/',\n",
+       " 'names': [{'name': 'Mytilene', 'language': 'eng'},\n",
+       "  {'name': 'Mytilène', 'language': 'fra'},\n",
+       "  {'name': 'Mitilene', 'language': 'spa'},\n",
+       "  {'name': 'Mitilene', 'language': 'ita'},\n",
+       "  {'name': 'Mytilene', 'language': 'lat'}],\n",
+       " 'alternative_urns': ['https://www.wikidata.org/wiki/Q42295059',\n",
+       "  'https://pleiades.stoa.org/places/550763'],\n",
+       " 'unique_id': 95,\n",
+       " 'longitude': None,\n",
+       " 'latitude': None,\n",
+       " 'descriptions': [],\n",
+       " 'created_at': '2021-09-09T19:09:12.954728Z',\n",
+       " 'updated_at': '2021-09-09T19:09:12.954734Z'}"
       ]
      },
-     "execution_count": 77,
+     "execution_count": 82,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "len(results)"
+    "Mytilene = requests.get('https://anthologiagraeca.org/api/cities/89').json()\n",
+    "Mytilene"
    ]
   },
   {
    "cell_type": "markdown",
-   "id": "awful-school",
+   "id": "cooked-purchase",
    "metadata": {},
    "source": [
-    "## Data about epigrams\n",
+    "### Scholia\n",
+    "\n",
+    "Many epigrams are associated with scholia: the scholia on the Codex palatinus 23."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 83,
+   "id": "noted-singer",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'book': 6,\n",
+       "  'fragment': 13,\n",
+       "  'sub_fragment': '',\n",
+       "  'number': 1,\n",
+       "  'url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.1/'},\n",
+       " {'book': 6,\n",
+       "  'fragment': 13,\n",
+       "  'sub_fragment': '',\n",
+       "  'number': 2,\n",
+       "  'url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.2/'}]"
+      ]
+     },
+     "execution_count": 83,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13['scholia']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "aerial-premiere",
+   "metadata": {},
+   "source": [
+    "Each scholium is identified by the epigram to which it is a scholium plus a number. For exemple the second scholium of the epigram 6.13 will be the scholium 6.13.2.\n",
+    "\n",
+    "The urn of a scholium will be structured as follows:\n",
+    "\n",
+    "`/passages/urn:cts:greekLit:tlg5011.tlg001.sag:`+bookNumber.+epigramNumber+epigramLetter`.`+scholiumNumber\n",
+    "\n",
+    "For example:\n",
     "\n",
-    "Let us now have a look at the data available for each epigram. Most of these data are present in the list of epigrams (`epigrams['results']`), but each epigram has its own endpoint, structured on the basis of its book and its number.\n",
+    "`/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.2/`\n",
     "\n",
-    "The *Greek Anthology* has 16 books, as you can see here:"
+    "A scholium contains very similar information as an epigram: texts in different languages, the picture of the manuscript etc.\n",
+    "\n",
+    "**Attention** the texts opening a book have been identified as scholia to the epigram 0 of the book. For example 5.0.1 or 5.0.2 or 12.0.1"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 78,
-   "id": "boolean-binary",
+   "execution_count": 84,
+   "id": "expired-miller",
    "metadata": {},
    "outputs": [
     {
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "16\n"
+      "{'id': 1999, 'url': 'https://anthologiagraeca.org/api/scholia/urn:cts:greekLit:tlg5011.tlg001.sag:5.0.1/', 'urn': 'urn:cts:greekLit:tlg5011.tlg001.sag:5.0.1', 'web_url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:5.0.1/', 'manuscripts': ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A087.jpg/pct:9.335021316210499,67.9883147400695,17.828050776662216,8.264462809917363/full/0/default.jpg'], 'texts': [{'language': 'grc', 'text': 'ἀρχή τῶν ἐρωτικὼν ἐπιγραμμάτων'}, {'language': 'por', 'text': 'Início dos epigramas eróticos.'}, {'language': 'fra', 'text': 'Le début des épigrammes érotiques.'}], 'cities': [], 'keywords': [], 'passage': {'book': 5, 'fragment': 0, 'sub_fragment': '', 'url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:5.0/'}, 'comments': [{'description': ['Lemmatiste: L.'], 'language': ['fra']}], 'media': []}\n",
+      "{'id': 2000, 'url': 'https://anthologiagraeca.org/api/scholia/urn:cts:greekLit:tlg5011.tlg001.sag:5.0.2/', 'urn': 'urn:cts:greekLit:tlg5011.tlg001.sag:5.0.2', 'web_url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:5.0.2/', 'manuscripts': [' http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A088.jpg/pct:9.57839977186465,5.684292685810079,77.95889161681437,5.6234937070427575/full/0/default.jpg'], 'texts': [{'language': 'grc', 'text': 'ἀρχή τῶν ἐρωτικῶν έπιγραμμάτων - διαφόρων ποιητῶν'}, {'language': 'por', 'text': 'Início dos epigramas eróticos - de diferentes poetas.'}, {'language': 'fra', 'text': 'Le début des épigrammes érotiques - de différentes auteurs.'}], 'cities': [], 'keywords': [], 'passage': {'book': 5, 'fragment': 0, 'sub_fragment': '', 'url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:5.0/'}, 'comments': [], 'media': []}\n",
+      "{'id': 816, 'url': 'https://anthologiagraeca.org/api/scholia/urn:cts:greekLit:tlg5011.tlg001.sag:12.0.2/', 'urn': 'urn:cts:greekLit:tlg5011.tlg001.sag:12.0.2', 'web_url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:12.0.2/', 'manuscripts': ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A569.jpg/pct:12.639237143536691,11.953945008805782,63.97128581066486,12.422816818582767/full/0/default.jpg'], 'texts': [{'language': 'grc', 'text': 'καὶ τίς ἂν εἴην εἰ πάντων σοι τῶν εἰρημένων τὴν γνῶσιν ἐκθέμενος τῶν Στράτωνος τῶν Σαρδιανοῦ Παιδικὴν Μοῦσαν ἐπεκρυψάμην, ἣν αὐτὸς παίζων πρὸς τοὺς πλησίον ἐπεδείκνυτο, τέρψιν οἰκείαν τὴν ἀπαγγελίαν τῶν ἐπιγραμμάτων, οὐ τὸν νοῦν, ποιούμενος. ἔχου τοίνυν τῶν ἑξῆς: ἐν χορείαις γὰρ ἥ γε σώφρων, κατὰ τὸν τραγικόν, οὐ διαφθαρήσεται.'}, {'language': 'grc', 'text': 'καὶ τίς ἂν εἴην εἰ πάντων σοι τῶν εἰρημένων τὴν γνῶσιν ἐκθέμενος τὴν Στράτωνος τοῦ Σαρδιανοῦ Παιδικὴν Μοῦσαν ἐπεκρυψάμην, ἣν αὐτὸς παίζων πρὸς τοὺς πλησίον ἐπεδείκνυτο, τέρψιν οἰκείαν τὴν ἀπαγγελίαν τῶν ἐπιγραμμάτων, οὐ τὸν νοῦν, ποιούμενος. ἔχου τοίνυν τῶν ἑξῆς: ἐν χορείαις γὰρ ἥ γε σώφρων, κατὰ τὸν τραγικόν, οὐ διαφθαρήσεται.'}, {'language': 'eng', 'text': 'And what kind of man should I be, reader, if after setting forth all that precedes for thee to study, I were to conceal the Puerile Muse of Strato of Barclis, which he used to recite to those about him in sport, taking personal delight in the diction of the epigrams, not in their meaning. Apply thyself then to what follows, for “in dances,” as the tragic poet says, \"a chaste woman will not be corrupted.”'}, {'language': 'fra', 'text': \"Et qui serais-je si après t'avoir donné la connaissance de toutes les choses dites, je te cachais la Muse garçonnière de Straton de Sardes, que lui-même en jouant récitait à ceux qui l'entouraient, en se faisant une joie personnelles de la récitation des épigrammes et non de leur sens. Voilà pour toi ce qui suit: dans les danses en effet, comme le dit le poète tragique, une femme chaste ne peut pas être corrompue.\"}], 'cities': [], 'keywords': [], 'passage': {'book': 12, 'fragment': 0, 'sub_fragment': '', 'url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:12.0/'}, 'comments': [], 'media': []}\n"
      ]
     }
    ],
    "source": [
-    "number_of_books = requests.get('https://anthologiagraeca.org/api/books/').json()['count']\n",
-    "\n",
-    "print(number_of_books)"
+    "sc5_0_1 = requests.get('https://anthologiagraeca.org/api/scholia/urn:cts:greekLit:tlg5011.tlg001.sag:5.0.1/').json()\n",
+    "print(sc5_0_1)\n",
+    "sc5_0_2 = requests.get('https://anthologiagraeca.org/api/scholia/urn:cts:greekLit:tlg5011.tlg001.sag:5.0.2/').json()\n",
+    "print(sc5_0_2)\n",
+    "sc12_0_2 = requests.get('https://anthologiagraeca.org/api/scholia/urn:cts:greekLit:tlg5011.tlg001.sag:12.0.2/').json()\n",
+    "print(sc12_0_2)"
    ]
   },
   {
    "cell_type": "markdown",
-   "id": "speaking-messaging",
+   "id": "explicit-finland",
    "metadata": {},
    "source": [
-    "An epigram is normally identified by a number (for exemple 1 or 145).\n",
+    "### Comments\n",
     "\n",
-    "Sometimes there are two or more epigrams for the same number. In these cases letters are used (*e.g.* 132a).\n",
+    "An epigram can have comments, a sort of footnotes about the epigram as a whole of some part of it. These comments can be multilingual and they sometimes contain some markdown markup:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 85,
+   "id": "detected-extraction",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'description': ['# Fresque de Pompéi\\n\\n Cette épigramme est représentée, selon Gutzwiller, dans une fresque de Pompéi'],\n",
+       "  'language': ['fra']},\n",
+       " {'description': [\"# Imitations de 6.13\\n\\n C'est vraisemblablement cette pièce de Léonidas qui a inspiré les épigr. 11-16 et 179-187, entre autres 14 (d'Antipater) et 16 (d'Archias), qui n'en sont que des imitations assez serviles. Elle était, en tous cas, une des plus classiques de toute la série; car c'est celle-là qu'on avait gravée sur le mur d'une maison de Pompéi pour servir de légende à une scène où était peinte cette offrande de trois chasseurs; mais il ne subsiste, des trois distiques que comportait l'inscription, que cinq lettres disséminées et les six premières du v. 6; et il a fallu toute la perspicacité de Dilthey pour y reconnaître des fragments de notre épigramme. \\n-P. Waltz \"],\n",
+       "  'language': ['fra']}]"
+      ]
+     },
+     "execution_count": 85,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep6_13['comments']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "fluid-suite",
+   "metadata": {},
+   "source": [
+    "### External references\n",
     "\n",
-    "Based on this information the epigram endpoind will be structured as follows:\n",
+    "An epigram can be linked to some external source. The idea of the project is to develop an edition which can take into account some \"weak links\" between the anthological material and some other cultural artefacts. This links are subjective and they do not want to be considered as \"scietific\". They can be link to a pop song, for example.\n",
     "\n",
-    "`/passages/urn:cts:greekLit:tlg7000.tlg001.ag:`+bookNumber`.`+epigramNumber+epigramLetter\n",
+    "They are just hyperlinks. For example:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 86,
+   "id": "mental-young",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'title': 'Jacques Lazure, Le Blaffart (2018)',\n",
+       "  'url': 'https://opuscules.ca/article-alire?article=202248'},\n",
+       " {'title': 'Charles Baudelaire, Remords Posthumes (1857)',\n",
+       "  'url': 'https://poesie.webnet.fr/lesgrandsclassiques/Poemes/charles_baudelaire/remords_posthume'},\n",
+       " {'title': 'Mylène Farmer, Regrets (1991)',\n",
+       "  'url': 'https://www.youtube.com/watch?v=ph6piqBnkgU'}]"
+      ]
+     },
+     "execution_count": 86,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ep7_710 = requests.get('https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:7.710').json()\n",
+    "ep7_710['external_references']"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "trained-glasgow",
+   "metadata": {},
+   "source": [
+    "### Internal references\n",
     "\n",
-    "> an example from the platform: https://anthologiagraeca.org/passages/urn:cts:greekLit:tlg7000.tlg001.ag:12.132a/\n",
+    "Internal references are links to some other epigram of the anthology. The relationship is symmetrical. The link can be of many tipes: an epigram can be the variation of another (and different kind of variation) or just have a vague link.\n",
     "\n",
-    "This url is avaiable in the list of epigrams as one can see in the field `url` of each result (let us take the first one here):"
+    "For the moment the type of internal reference has not been specified - it will probably always be \"default\"."
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 80,
-   "id": "peaceful-equality",
+   "execution_count": 87,
+   "id": "christian-mercury",
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:1.1/?format=json'"
+       "[{'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.11/',\n",
+       "  'reference_type': 'Default'},\n",
+       " {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.14/',\n",
+       "  'reference_type': 'Default'},\n",
+       " {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.179/',\n",
+       "  'reference_type': 'Default'},\n",
+       " {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.186/',\n",
+       "  'reference_type': 'Default'},\n",
+       " {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.187/',\n",
+       "  'reference_type': 'Default'}]"
       ]
      },
-     "execution_count": 80,
+     "execution_count": 87,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "epigrams_res['results'][0]['url']"
+    "ep6_13['internal_references']"
    ]
   },
   {
    "cell_type": "markdown",
-   "id": "graduate-envelope",
+   "id": "hired-search",
    "metadata": {},
    "source": [
-    "Let us have a look at the epigram 6.13, which means the epigram number 13 of the book 6:"
+    "## Wikidata and other identifiers\n",
+    "\n",
+    "Almost all the objects in our data are aligned with a wikidata id. It is the case for `authors`, `keywords` and `cities`. The wikidata id can be found in the field `alternative_urns`.\n",
+    "\n",
+    "Let us look for an author: "
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 83,
-   "id": "invalid-observer",
+   "execution_count": 88,
+   "id": "fitting-finding",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "meleager = requests.get('https://anthologiagraeca.org/api/authors/1').json()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 89,
+   "id": "interracial-battle",
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "{'id': 394,\n",
-       " 'book': {'url': 'https://anthologiagraeca.org/api/books/5/', 'number': 6},\n",
-       " 'fragment': 13,\n",
-       " 'sub_fragment': '',\n",
-       " 'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:6.13',\n",
-       " 'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.13/',\n",
-       " 'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.13/',\n",
-       " 'manuscripts': ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A142.jpg/pct:10.614886731391586,73.26114119117034,50.355987055016186,4.664723032069971/full/0/default.jpg',\n",
-       "  'http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A143.jpg/pct:30.37231055564613,13.349681305818653,51.660362990702126,7.613758509494807/full/0/default.jpg'],\n",
-       " 'texts': [{'language': 'grc',\n",
-       "   'text': 'οἱ τρισσοί τοι ταῦτα τὰ δίκτυα θῆκαν ὅμαιμοι,\\nἀγρότα Πάν, ἄλλης ἄλλος ἀπ᾽ ἀγρεσίης:\\nὧν ἀπὸ μὲν πτηνῶν Πίγρης τάδε, ταῦτα δὲ Δᾶμις\\nτετραπόδων, Κλείτωρ δ᾽ ὁ τρίτος εἰναλίων.\\nἀνθ᾽ ὧν τῷ μὲν πέμπε δι᾽ ἠέρος εὔστοχον ἄγρην,\\nτῷ δὲ διὰ δρυμῶν, τῷ δὲ δι᾽ ἠϊόνων. '},\n",
-       "  {'language': 'ita',\n",
-       "   'text': 'Tre fratelli ti hanno dedicato queste reti,\\nPan cacciatore, ognuna proveniente da una caccia differente.\\nPigre queste di uccelli, Damis queste,\\ndi bestie feroci, Cleitore, il terzo, di animali marini.\\nIn cambio dai una caccia fortunata al primo in aria\\nal secondo nei boschi e al terzo sulle rive.'},\n",
-       "  {'language': 'fra',\n",
-       "   'text': \"Ces trois frères t'ont dédié ces filets,\\nPan chasseur, chacun issu d'une chasse différente.\\nPigres celles-ci, d'oiseaux, Damis celle-ci,\\nde bêtes féroces, Cléitor, le troisième, d'animaux marins.\\nEn échange donne une bonne chasse au premier dans l'air,\\nau deuxième dans les bois et au troisième sur les rivages.\"},\n",
-       "  {'language': 'fra',\n",
-       "   'text': \"Les trois frères t'ont consacré, chasseur Pan, ces filets, pris par chacun à son genre de chasse: Pigrès, pour les oiseaux; Damis, pour les quadrupèdes; Cléitor, pour le peuple de la mer. Envoie-leur en échange une bonne chasse à l'un par les airs, au second par les bois, à l'autre par les grèves.\"},\n",
-       "  {'language': 'eng',\n",
-       "   'text': 'Huntsman Pan, the three brothers dedicated these nets to thee, each from a different chase: Pigres these from fowl, Damis these from beast, and Clitor his from the denizens of the deep. In return for which send them easily caught game, to the first through the air, to the second through the woods, and to the third through the shore-water.'}],\n",
-       " 'authors': [{'tlg_id': 'tlg-1458',\n",
-       "   'names': [{'name': 'Leonidas of Tarentum', 'language': 'eng'},\n",
-       "    {'name': 'Λεωνίδας ὁ Ταραντῖνος', 'language': 'grc'},\n",
-       "    {'name': 'Leonida di Taranto', 'language': 'ita'},\n",
-       "    {'name': 'Λεωνίδας ᾿Αλεξανδρεύς', 'language': 'grc'},\n",
-       "    {'name': \"Léonidas d'Alexandrie\", 'language': 'fra'},\n",
-       "    {'name': 'Leonidas of Alexandria', 'language': 'eng'}]}],\n",
-       " 'cities': [],\n",
-       " 'keywords': [{'id': 1,\n",
-       "   'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
-       "    {'name': 'distico elegiaco', 'language': 'ita'},\n",
-       "    {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
-       "   'category': [{'name': 'Formes métriques', 'language': 'fra'},\n",
-       "    {'name': 'Metric forms', 'language': 'eng'},\n",
-       "    {'name': 'Metra', 'language': 'lat'},\n",
-       "    {'name': 'Forme metriche', 'language': 'ita'},\n",
-       "    {'name': 'Formas métricas', 'language': 'por'}]},\n",
-       "  {'id': 4,\n",
-       "   'names': [{'name': 'époque hellénistique', 'language': 'fra'},\n",
-       "    {'name': 'epoca ellenistica', 'language': 'ita'},\n",
-       "    {'name': 'hellenistic period', 'language': 'eng'}],\n",
-       "   'category': [{'name': 'Époques', 'language': 'fra'},\n",
-       "    {'name': 'Periods', 'language': 'eng'},\n",
-       "    {'name': 'Tempora', 'language': 'lat'},\n",
-       "    {'name': 'Periodi', 'language': 'ita'},\n",
-       "    {'name': 'Épocas', 'language': 'por'}]},\n",
-       "  {'id': 73,\n",
-       "   'names': [{'name': 'Validé par William', 'language': 'fra'}],\n",
-       "   'category': [{'name': 'Validation', 'language': 'fra'},\n",
-       "    {'name': 'Validation', 'language': 'eng'},\n",
-       "    {'name': 'Contralectus', 'language': 'lat'},\n",
-       "    {'name': 'Validazione', 'language': 'ita'},\n",
-       "    {'name': 'Validação', 'language': 'por'}]},\n",
-       "  {'id': 186,\n",
-       "   'names': [{'name': 'dedicatory', 'language': 'eng'},\n",
-       "    {'name': 'votif (anathématique)', 'language': 'fra'}],\n",
-       "   'category': [{'name': 'Genres', 'language': 'fra'},\n",
-       "    {'name': 'Genres', 'language': 'eng'},\n",
-       "    {'name': 'Genera', 'language': 'lat'},\n",
-       "    {'name': 'Generi', 'language': 'ita'},\n",
-       "    {'name': 'Gêneros', 'language': 'por'}]},\n",
-       "  {'id': 234,\n",
-       "   'names': [{'name': 'Damis', 'language': 'eng'}],\n",
-       "   'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
-       "    {'name': 'Quoted persons', 'language': 'eng'},\n",
-       "    {'name': 'Homines memorati', 'language': 'lat'},\n",
-       "    {'name': 'Persone citate', 'language': 'ita'},\n",
-       "    {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
-       "  {'id': 270,\n",
-       "   'names': [{'name': 'Chasse', 'language': 'fra'}],\n",
-       "   'category': [{'name': 'Motifs', 'language': 'fra'},\n",
-       "    {'name': 'Motifs', 'language': 'eng'},\n",
-       "    {'name': 'Themata', 'language': 'lat'},\n",
-       "    {'name': 'Motivi', 'language': 'ita'},\n",
-       "    {'name': 'Motivos', 'language': 'por'}]},\n",
-       "  {'id': 492,\n",
-       "   'names': [{'name': 'Pan', 'language': 'eng'}],\n",
-       "   'category': [{'name': 'Divinités', 'language': 'fra'},\n",
-       "    {'name': 'Deities', 'language': 'eng'},\n",
-       "    {'name': 'Divinitates', 'language': 'lat'},\n",
-       "    {'name': 'Divinità', 'language': 'ita'},\n",
-       "    {'name': 'Divindades', 'language': 'por'}]},\n",
-       "  {'id': 574,\n",
-       "   'names': [{'name': 'Πίγρης', 'language': 'grc'},\n",
-       "    {'name': 'Pigrès', 'language': 'fra'}],\n",
-       "   'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
-       "    {'name': 'Quoted persons', 'language': 'eng'},\n",
-       "    {'name': 'Homines memorati', 'language': 'lat'},\n",
-       "    {'name': 'Persone citate', 'language': 'ita'},\n",
-       "    {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
-       "  {'id': 575,\n",
-       "   'names': [{'name': 'Κλείτωρ', 'language': 'grc'},\n",
-       "    {'name': 'Cléitor', 'language': 'fra'}],\n",
-       "   'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
-       "    {'name': 'Quoted persons', 'language': 'eng'},\n",
-       "    {'name': 'Homines memorati', 'language': 'lat'},\n",
-       "    {'name': 'Persone citate', 'language': 'ita'},\n",
-       "    {'name': 'Pessoas citadas', 'language': 'por'}]}],\n",
-       " 'scholia': [{'book': 6,\n",
-       "   'fragment': 13,\n",
-       "   'sub_fragment': '',\n",
-       "   'number': 1,\n",
-       "   'url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.1/'},\n",
-       "  {'book': 6,\n",
-       "   'fragment': 13,\n",
-       "   'sub_fragment': '',\n",
-       "   'number': 2,\n",
-       "   'url': '/passages/urn:cts:greekLit:tlg5011.tlg001.sag:6.13.2/'}],\n",
-       " 'comments': [{'description': ['# Fresque de Pompéi\\n\\n Cette épigramme est représentée, selon Gutzwiller, dans une fresque de Pompéi'],\n",
-       "   'language': ['fra']},\n",
-       "  {'description': [\"# Imitations de 6.13\\n\\n C'est vraisemblablement cette pièce de Léonidas qui a inspiré les épigr. 11-16 et 179-187, entre autres 14 (d'Antipater) et 16 (d'Archias), qui n'en sont que des imitations assez serviles. Elle était, en tous cas, une des plus classiques de toute la série; car c'est celle-là qu'on avait gravée sur le mur d'une maison de Pompéi pour servir de légende à une scène où était peinte cette offrande de trois chasseurs; mais il ne subsiste, des trois distiques que comportait l'inscription, que cinq lettres disséminées et les six premières du v. 6; et il a fallu toute la perspicacité de Dilthey pour y reconnaître des fragments de notre épigramme. \\n-P. Waltz \"],\n",
-       "   'language': ['fra']}],\n",
-       " 'external_references': [],\n",
-       " 'internal_references': [{'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.11/',\n",
-       "   'reference_type': 'Default'},\n",
-       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.14/',\n",
-       "   'reference_type': 'Default'},\n",
-       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.179/',\n",
-       "   'reference_type': 'Default'},\n",
-       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.186/',\n",
-       "   'reference_type': 'Default'},\n",
-       "  {'to_passage': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.187/',\n",
-       "   'reference_type': 'Default'}],\n",
-       " 'media': []}"
+       "{'id': 1,\n",
+       " 'url': 'https://anthologiagraeca.org/api/authors/1/',\n",
+       " 'names': [{'name': 'Callimachus', 'language': 'eng'},\n",
+       "  {'name': 'Καλλίμαχος', 'language': 'grc'},\n",
+       "  {'name': 'Callimaque', 'language': 'fra'}],\n",
+       " 'alternative_urns': ['https://www.wikidata.org/wiki/Q192417',\n",
+       "  'http://data.perseus.org/catalog/urn:cts:greekLit:tlg0533'],\n",
+       " 'city_born': {'url': 'https://anthologiagraeca.org/api/cities/1/',\n",
+       "  'names': [{'name': 'Cyrène', 'language': 'fra'},\n",
+       "   {'name': 'Cirene', 'language': 'spa'},\n",
+       "   {'name': 'Cirene', 'language': 'por'},\n",
+       "   {'name': 'Cyrene', 'language': 'eng'},\n",
+       "   {'name': 'Cyrene', 'language': 'lat'},\n",
+       "   {'name': 'Cirene', 'language': 'ita'}],\n",
+       "  'alternative_urns': ['https://anthologia.ecrituresnumeriques.ca/api/v1/cities/3',\n",
+       "   'https://www.wikidata.org/wiki/Q44112',\n",
+       "   'https://pleiades.stoa.org/places/373778'],\n",
+       "  'unique_id': 3,\n",
+       "  'longitude': '32.80799',\n",
+       "  'latitude': '21.86616',\n",
+       "  'descriptions': [],\n",
+       "  'created_at': '2021-04-08T21:27:25.373000Z',\n",
+       "  'updated_at': '2021-04-08T21:27:25.373000Z'},\n",
+       " 'city_died': {'url': 'https://anthologiagraeca.org/api/cities/2/',\n",
+       "  'names': [{'name': 'Alexandrie', 'language': 'fra'},\n",
+       "   {'name': 'Alexandria', 'language': 'eng'},\n",
+       "   {'name': 'Ἀλεξάνδρεια', 'language': 'grc'}],\n",
+       "  'alternative_urns': ['https://anthologia.ecrituresnumeriques.ca/api/v1/cities/4',\n",
+       "   'https://www.wikidata.org/wiki/Q87',\n",
+       "   'https://pleiades.stoa.org/places/727070'],\n",
+       "  'unique_id': 4,\n",
+       "  'longitude': '31.20010',\n",
+       "  'latitude': '29.91857',\n",
+       "  'descriptions': [],\n",
+       "  'created_at': '2021-04-08T21:27:25.384000Z',\n",
+       "  'updated_at': '2021-04-08T21:27:25.384000Z'},\n",
+       " 'born_range_year_date': None,\n",
+       " 'died_range_year_date': None,\n",
+       " 'unique_id': 1,\n",
+       " 'created_at': '2021-04-08T21:27:25.392000Z',\n",
+       " 'updated_at': '2021-04-08T21:27:25.392000Z',\n",
+       " 'validation': 0,\n",
+       " 'tlg_id': 'tlg-0533',\n",
+       " 'main_name': 'Callimachus',\n",
+       " 'descriptions': [],\n",
+       " 'images': []}"
       ]
      },
-     "execution_count": 83,
+     "execution_count": 89,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "ep6_13 = requests.get('https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:6.13').json()\n",
-    "\n",
-    "ep6_13"
+    "meleager"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 85,
-   "id": "biological-chicken",
-   "metadata": {
-    "scrolled": true
-   },
+   "execution_count": 90,
+   "id": "genuine-happiness",
+   "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "{'id': 3199,\n",
-       " 'book': {'url': 'https://anthologiagraeca.org/api/books/8/', 'number': 12},\n",
-       " 'fragment': 132,\n",
-       " 'sub_fragment': 'a',\n",
-       " 'urn': 'urn:cts:greekLit:tlg7000.tlg001.ag:12.132a',\n",
-       " 'url': 'https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:12.132a/',\n",
-       " 'web_url': '/passages/urn:cts:greekLit:tlg7000.tlg001.ag:12.132a/',\n",
-       " 'manuscripts': ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A589.jpg/pct:11.78916,41.5646,60.6891,16.87853/full/0/default.jpg'],\n",
-       " 'texts': [{'language': 'grc',\n",
-       "   'text': 'ἆ ψυχὴ βαρύμοχθε, σὺ δ᾽ ἄρτι μὲν ἐκ πυρὸς αἴθῃ,\\n ἄρτι δ᾽ ἀναψύχεις, πνεῦμ᾽ ἀναλεξαμένη.\\nτί κλαίεις; τὸν ἄτεγκτον ὅτ᾽ ἐν κόλποισιν Ἔρωτα\\n ἔτρεφες, οὐκ ᾔδεις ὡς ἐπὶ σοὶ τρέφετο;\\n\\n                  οὐκ ᾔδεις; νῦν γνῶθι καλῶν ἄλλαγμα τροφείων,\\nπῦρ ἅμα καὶ ψυχρὰν δεξαμένη χιόνα.\\n αὐτὴ ταῦθ᾽ εἵλου: φέρε τὸν πόνον. ἄξια πάσχεις\\nὧν ἔδρας, ὀπτῷ καιομένη μέλιτι.'},\n",
-       "  {'language': 'eng',\n",
-       "   'text': 'O sore-afflicted soul, now thou bumest in the fire and now thou revivest, recovering thy breath. Why dost thou weep? When thou didst nurse merciless Love in thy bosom knewest thou not that he was being nursed for thy bane ? Didst thou not know it ? Now learn to know the pay of thy good nursing, receiving from him fire and cold snow therewith. Thyself thou hast chosen this ; bear the pain. Thou sufferest the due guerdon of what thou hast done, burnt by his boiling honey.'},\n",
-       "  {'language': 'fra',\n",
-       "   'text': 'Oh\\xa0! mon âme accablée de souffrances, tantôt c’est le feu qui te brûle, tantôt tu reprends vie en retrouvant le souffle\\xa0! Tu pleures\\xa0? Lorsque dans ton sein tu nourrissais l’impitoyable Amour, ne savais-tu pas que c’était contre toi que tu le nourrissais\\xa0? Tu ne le savais pas\\xa0? Vois maintenant le salaire de tes bons soins\\xa0: tu reçois tout ensemble feu et neige glacée\\xa0! C’est toi, toi qu’il l’a choisi\\xa0! Supporte ta douleur\\xa0! Juste souffrance de tes actes, la brûlure du miel ardent\\xa0!'}],\n",
-       " 'authors': [{'tlg_id': 'tlg-1492',\n",
-       "   'names': [{'name': 'Μελέαγρος', 'language': 'grc'},\n",
-       "    {'name': 'Meleager', 'language': 'eng'},\n",
-       "    {'name': 'Méléagre', 'language': 'fra'}]}],\n",
-       " 'cities': [],\n",
-       " 'keywords': [{'id': 1,\n",
-       "   'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
-       "    {'name': 'distico elegiaco', 'language': 'ita'},\n",
-       "    {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
-       "   'category': [{'name': 'Formes métriques', 'language': 'fra'},\n",
-       "    {'name': 'Metric forms', 'language': 'eng'},\n",
-       "    {'name': 'Metra', 'language': 'lat'},\n",
-       "    {'name': 'Forme metriche', 'language': 'ita'},\n",
-       "    {'name': 'Formas métricas', 'language': 'por'}]},\n",
-       "  {'id': 3,\n",
-       "   'names': [{'name': 'erotic', 'language': 'eng'},\n",
-       "    {'name': 'érotic', 'language': 'fra'},\n",
-       "    {'name': 'erotico', 'language': 'ita'}],\n",
-       "   'category': [{'name': 'Genres', 'language': 'fra'},\n",
-       "    {'name': 'Genres', 'language': 'eng'},\n",
-       "    {'name': 'Genera', 'language': 'lat'},\n",
-       "    {'name': 'Generi', 'language': 'ita'},\n",
-       "    {'name': 'Gêneros', 'language': 'por'}]},\n",
-       "  {'id': 4,\n",
-       "   'names': [{'name': 'époque hellénistique', 'language': 'fra'},\n",
-       "    {'name': 'epoca ellenistica', 'language': 'ita'},\n",
-       "    {'name': 'hellenistic period', 'language': 'eng'}],\n",
-       "   'category': [{'name': 'Époques', 'language': 'fra'},\n",
-       "    {'name': 'Periods', 'language': 'eng'},\n",
-       "    {'name': 'Tempora', 'language': 'lat'},\n",
-       "    {'name': 'Periodi', 'language': 'ita'},\n",
-       "    {'name': 'Épocas', 'language': 'por'}]},\n",
-       "  {'id': 181,\n",
-       "   'names': [{'name': 'Couronne de Méléagre', 'language': 'fra'}],\n",
-       "   'category': [{'name': 'Collections', 'language': 'fra'},\n",
-       "    {'name': 'Collections', 'language': 'eng'},\n",
-       "    {'name': 'Collecteana', 'language': 'lat'},\n",
-       "    {'name': 'Collezioni', 'language': 'ita'},\n",
-       "    {'name': 'Coleções', 'language': 'por'}]}],\n",
-       " 'scholia': [],\n",
-       " 'comments': [],\n",
-       " 'external_references': [],\n",
-       " 'internal_references': [],\n",
-       " 'media': []}"
+       "['https://www.wikidata.org/wiki/Q192417',\n",
+       " 'http://data.perseus.org/catalog/urn:cts:greekLit:tlg0533']"
       ]
      },
-     "execution_count": 85,
+     "execution_count": 90,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "ep12_132a = requests.get('https://anthologiagraeca.org/api/passages/urn:cts:greekLit:tlg7000.tlg001.ag:12.132a').json()\n",
-    "\n",
-    "ep12_132a"
+    "meleager['alternative_urns']"
    ]
   },
   {
    "cell_type": "markdown",
-   "id": "residential-encyclopedia",
+   "id": "placed-mailing",
    "metadata": {},
    "source": [
-    "The epigram's number is in the key `fragment` and the letter (when it has one) in the key `sub_fragment`)"
+    "Other identifiers can be found in alternative_urns: for exemple the TLG for authors (look above) and the pleiades id for places:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 91,
+   "id": "nearby-vault",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "['https://www.wikidata.org/wiki/Q42295059',\n",
+       " 'https://pleiades.stoa.org/places/550763']"
+      ]
+     },
+     "execution_count": 91,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "Mytilene['alternative_urns']"
    ]
   },
   {
@@ -2991,7 +2932,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 15,
+   "execution_count": 92,
    "id": "transsexual-salad",
    "metadata": {},
    "outputs": [],
@@ -3018,7 +2959,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 16,
+   "execution_count": 93,
    "id": "pursuant-helena",
    "metadata": {},
    "outputs": [
@@ -10830,7 +10771,7 @@
        "   'created': '2021-09-27T13:06:19.432Z'}]}"
       ]
      },
-     "execution_count": 16,
+     "execution_count": 93,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -10839,237 +10780,18 @@
     "getAnnotations(590,599)"
    ]
   },
-  {
-   "cell_type": "markdown",
-   "id": "8897a281",
-   "metadata": {},
-   "source": [
-    "For each epigram one can retrieve a list of the IIIf images of the Codex Palatinus 23 which correspons to the epigram in the keymanuscripts."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 17,
-   "id": "ee7447d2",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "['http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A142.jpg/pct:10.614886731391586,73.26114119117034,50.355987055016186,4.664723032069971/full/0/default.jpg',\n",
-       " 'http://digi.ub.uni-heidelberg.de/iiif/2/cpgraec23%3A143.jpg/pct:30.37231055564613,13.349681305818653,51.660362990702126,7.613758509494807/full/0/default.jpg']"
-      ]
-     },
-     "execution_count": 17,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "ep6_13['manuscripts']"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "a1098a33",
-   "metadata": {},
-   "source": [
-    "Each epigram has a list of texts wich are associated to it. These are one or more greek editions of the text and a set of translations:"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 18,
-   "id": "ded7887f",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "[{'language': 'grc',\n",
-       "  'text': 'οἱ τρισσοί τοι ταῦτα τὰ δίκτυα θῆκαν ὅμαιμοι,\\nἀγρότα Πάν, ἄλλης ἄλλος ἀπ᾽ ἀγρεσίης:\\nὧν ἀπὸ μὲν πτηνῶν Πίγρης τάδε, ταῦτα δὲ Δᾶμις\\nτετραπόδων, Κλείτωρ δ᾽ ὁ τρίτος εἰναλίων.\\nἀνθ᾽ ὧν τῷ μὲν πέμπε δι᾽ ἠέρος εὔστοχον ἄγρην,\\nτῷ δὲ διὰ δρυμῶν, τῷ δὲ δι᾽ ἠϊόνων. '},\n",
-       " {'language': 'ita',\n",
-       "  'text': 'Tre fratelli ti hanno dedicato queste reti,\\nPan cacciatore, ognuna proveniente da una caccia differente.\\nPigre queste di uccelli, Damis queste,\\ndi bestie feroci, Cleitore, il terzo, di animali marini.\\nIn cambio dai una caccia fortunata al primo in aria\\nal secondo nei boschi e al terzo sulle rive.'},\n",
-       " {'language': 'fra',\n",
-       "  'text': \"Ces trois frères t'ont dédié ces filets,\\nPan chasseur, chacun issu d'une chasse différente.\\nPigres celles-ci, d'oiseaux, Damis celle-ci,\\nde bêtes féroces, Cléitor, le troisième, d'animaux marins.\\nEn échange donne une bonne chasse au premier dans l'air,\\nau deuxième dans les bois et au troisième sur les rivages.\"},\n",
-       " {'language': 'fra',\n",
-       "  'text': \"Les trois frères t'ont consacré, chasseur Pan, ces filets, pris par chacun à son genre de chasse: Pigrès, pour les oiseaux; Damis, pour les quadrupèdes; Cléitor, pour le peuple de la mer. Envoie-leur en échange une bonne chasse à l'un par les airs, au second par les bois, à l'autre par les grèves.\"},\n",
-       " {'language': 'eng',\n",
-       "  'text': 'Huntsman Pan, the three brothers dedicated these nets to thee, each from a different chase: Pigres these from fowl, Damis these from beast, and Clitor his from the denizens of the deep. In return for which send them easily caught game, to the first through the air, to the second through the woods, and to the third through the shore-water.'}]"
-      ]
-     },
-     "execution_count": 18,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "ep6_13['texts']"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "4fa1df86",
-   "metadata": {},
-   "source": [
-    "All the epigrams in our database should have at least the greek text."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "4a4002d2",
-   "metadata": {},
-   "source": [
-    "Each epigram is associated to a list of keywords : "
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 19,
-   "id": "f68ced91",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "[{'id': 1,\n",
-       "  'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
-       "   {'name': 'distico elegiaco', 'language': 'ita'},\n",
-       "   {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
-       "  'category': [{'name': 'Formes métriques', 'language': 'fra'},\n",
-       "   {'name': 'Metric forms', 'language': 'eng'},\n",
-       "   {'name': 'Metra', 'language': 'lat'},\n",
-       "   {'name': 'Forme metriche', 'language': 'ita'},\n",
-       "   {'name': 'Formas métricas', 'language': 'por'}]},\n",
-       " {'id': 4,\n",
-       "  'names': [{'name': 'époque hellénistique', 'language': 'fra'},\n",
-       "   {'name': 'epoca ellenistica', 'language': 'ita'},\n",
-       "   {'name': 'hellenistic period', 'language': 'eng'}],\n",
-       "  'category': [{'name': 'Époques', 'language': 'fra'},\n",
-       "   {'name': 'Periods', 'language': 'eng'},\n",
-       "   {'name': 'Tempora', 'language': 'lat'},\n",
-       "   {'name': 'Periodi', 'language': 'ita'},\n",
-       "   {'name': 'Épocas', 'language': 'por'}]},\n",
-       " {'id': 73,\n",
-       "  'names': [{'name': 'Validé par William', 'language': 'fra'}],\n",
-       "  'category': [{'name': 'Validation', 'language': 'fra'},\n",
-       "   {'name': 'Validation', 'language': 'eng'},\n",
-       "   {'name': 'Contralectus', 'language': 'lat'},\n",
-       "   {'name': 'Validazione', 'language': 'ita'},\n",
-       "   {'name': 'Validação', 'language': 'por'}]},\n",
-       " {'id': 186,\n",
-       "  'names': [{'name': 'dedicatory', 'language': 'eng'},\n",
-       "   {'name': 'votif (anathématique)', 'language': 'fra'}],\n",
-       "  'category': [{'name': 'Genres', 'language': 'fra'},\n",
-       "   {'name': 'Genres', 'language': 'eng'},\n",
-       "   {'name': 'Genera', 'language': 'lat'},\n",
-       "   {'name': 'Generi', 'language': 'ita'},\n",
-       "   {'name': 'Gêneros', 'language': 'por'}]},\n",
-       " {'id': 234,\n",
-       "  'names': [{'name': 'Damis', 'language': 'eng'}],\n",
-       "  'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
-       "   {'name': 'Quoted persons', 'language': 'eng'},\n",
-       "   {'name': 'Homines memorati', 'language': 'lat'},\n",
-       "   {'name': 'Persone citate', 'language': 'ita'},\n",
-       "   {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
-       " {'id': 270,\n",
-       "  'names': [{'name': 'Chasse', 'language': 'fra'}],\n",
-       "  'category': [{'name': 'Motifs', 'language': 'fra'},\n",
-       "   {'name': 'Motifs', 'language': 'eng'},\n",
-       "   {'name': 'Themata', 'language': 'lat'},\n",
-       "   {'name': 'Motivi', 'language': 'ita'},\n",
-       "   {'name': 'Motivos', 'language': 'por'}]},\n",
-       " {'id': 492,\n",
-       "  'names': [{'name': 'Pan', 'language': 'eng'}],\n",
-       "  'category': [{'name': 'Divinités', 'language': 'fra'},\n",
-       "   {'name': 'Deities', 'language': 'eng'},\n",
-       "   {'name': 'Divinitates', 'language': 'lat'},\n",
-       "   {'name': 'Divinità', 'language': 'ita'},\n",
-       "   {'name': 'Divindades', 'language': 'por'}]},\n",
-       " {'id': 574,\n",
-       "  'names': [{'name': 'Πίγρης', 'language': 'grc'},\n",
-       "   {'name': 'Pigrès', 'language': 'fra'}],\n",
-       "  'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
-       "   {'name': 'Quoted persons', 'language': 'eng'},\n",
-       "   {'name': 'Homines memorati', 'language': 'lat'},\n",
-       "   {'name': 'Persone citate', 'language': 'ita'},\n",
-       "   {'name': 'Pessoas citadas', 'language': 'por'}]},\n",
-       " {'id': 575,\n",
-       "  'names': [{'name': 'Κλείτωρ', 'language': 'grc'},\n",
-       "   {'name': 'Cléitor', 'language': 'fra'}],\n",
-       "  'category': [{'name': 'Personnes citées', 'language': 'fra'},\n",
-       "   {'name': 'Quoted persons', 'language': 'eng'},\n",
-       "   {'name': 'Homines memorati', 'language': 'lat'},\n",
-       "   {'name': 'Persone citate', 'language': 'ita'},\n",
-       "   {'name': 'Pessoas citadas', 'language': 'por'}]}]"
-      ]
-     },
-     "execution_count": 19,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "ep6_13['keywords']"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "146f924b",
-   "metadata": {},
-   "source": [
-    "One can have more information about the keywords on its own endpoint, structured as follow : \n",
-    "\n",
-    "`https://anthologiagraeca.org/api/keywords/`+keyword_id "
-   ]
-  },
   {
    "cell_type": "code",
-   "execution_count": 22,
-   "id": "ab6d207f",
+   "execution_count": null,
+   "id": "d8282b21",
    "metadata": {},
    "outputs": [],
-   "source": [
-    "keyword_1 = requests.get(\"https://anthologiagraeca.org/api/keywords/1/\").json()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 23,
-   "id": "1007c1ab",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "{'id': 1,\n",
-       " 'url': 'https://anthologiagraeca.org/api/keywords/1/',\n",
-       " 'category': {'id': 1,\n",
-       "  'url': 'https://anthologiagraeca.org/api/keyword_categories/1/',\n",
-       "  'names': [{'name': 'Formes métriques', 'language': 'fra'},\n",
-       "   {'name': 'Metric forms', 'language': 'eng'},\n",
-       "   {'name': 'Metra', 'language': 'lat'},\n",
-       "   {'name': 'Forme metriche', 'language': 'ita'},\n",
-       "   {'name': 'Formas métricas', 'language': 'por'}]},\n",
-       " 'names': [{'name': 'distique élégiaque', 'language': 'fra'},\n",
-       "  {'name': 'distico elegiaco', 'language': 'ita'},\n",
-       "  {'name': 'Elegiac couplet', 'language': 'eng'}],\n",
-       " 'alternative_urns': [{'urn': 'https://www.wikidata.org/wiki/Q2082412'}]}"
-      ]
-     },
-     "execution_count": 23,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "keyword_1"
-   ]
+   "source": []
   },
   {
    "cell_type": "code",
    "execution_count": null,
-   "id": "d8282b21",
+   "id": "tight-mapping",
    "metadata": {},
    "outputs": [],
    "source": []