Provides a search endpoint you can search for an autocomplete for university name or/and filter by country.
Feel free to update the list from university-domains-list
SEARCH FROM OUR PUBLIC APIhttp://universities.hipolabs.com
http://universities.hipolabs.com/search?name=middle
http://universities.hipolabs.com/search?name=middle&country=turkey
[
{
web_page: "http://www.meu.edu.jo/",
country: "Jordan",
domain: "meu.edu.jo",
name: "Middle East University"
},
{
web_page: "http://www.odtu.edu.tr/",
country: "Turkey",
domain: "odtu.edu.tr",
name: "Middle East Technical University"
},
{
web_page: "http://www.mtsu.edu/",
country: "USA",
domain: "mtsu.edu",
name: "Middle Tennessee State University"
},
{
web_page: "http://www.mga.edu/",
country: "USA",
domain: "mga.edu",
name: "Middle Georgia State College"
},
{
web_page: "http://www.mdx.ac.uk/",
country: "United Kingdom",
domain: "mdx.ac.uk",
name: "Middlesex University"
},
{
web_page: "http://www.middlebury.edu/",
country: "USA",
domain: "middlebury.edu",
name: "Middlebury College"
}
]
/search?name=Middle&country=Turkey
[
{
web_page: "http://www.odtu.edu.tr/",
country: "Turkey",
domain: "odtu.edu.tr",
name: "Middle East Technical University"
}
]
To paginate requests, we can use the limit and offset parameters. This allows to fetch limited data.
/search?name=Middle&limit=1
[
{
web_page: "http://www.meu.edu.jo/",
country: "Jordan",
domain: "meu.edu.jo",
name: "Middle East University"
}
]
/search?name=Middle&offset=1&limit=1
[
{
web_page: "http://www.odtu.edu.tr/",
country: "Turkey",
domain: "odtu.edu.tr",
name: "Middle East Technical University"
}
]
If the university dataset changes, the API won't automatically update it. Use this endpoint to force a refresh.
{
'status': str,
'message': str
}
git clone https://github.com/Hipo/university-domains-list-api.git
pip install -r requirements.txt
python app.py
Please contribute to this list! We need your support to keep this list up-to-date. Do not hesitate to fix any wrong data. It is extremely easy. Just open a PR, or create an issue.
Created and maintained by HipoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4