Is there an IMDB API to retrieve character information ? Assuming I know the exact name of the character ?
相关问题
- Google places autocomplete suggestion without coun
- Karate API Testing - Access variable value across
- How to verify laravel passport api token in node /
- Converting byte array output into Blob corrupts fi
- How to handle “App is temporarily blocked from log
相关文章
- 我用scrapy写了一个蛮简单的爬虫怎么封装成一个api啊
- 后端给前端的API接口是怎么用代码写的
- Convert C# Object to Json Object
- Android camera2 API get focus distance in AF mode
- Getting all listing images from an Etsy shop
- Is there an API to get statictics on Google Play d
- How to search specific user's tracks by tag wi
- Django REST Framework - OAuth2 Consumer API from e
There are two public, undocumented api's that may change at any time since they are undocumented and unsupported
One of them gives you some json with some relevant information for an actor: http://www.imdb.com/xml/find?json=1&nr=1&nm=on&q={NAME+OF+ACTOR}
As an example: http://www.imdb.com/xml/find?json=1&nr=1&nm=on&q=jessica+simpson
More details can be found with this question and this answer in particular Does IMDB provide an API?