1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/docs/sources/api/index_search_api.rst

43 lines
941 B
ReStructuredText
Raw Normal View History

2013-05-09 17:05:20 -07:00
:title: Docker Index documentation
:description: Documentation for docker Index
:keywords: docker, index, api
2013-05-02 14:32:38 -04:00
=======================
Docker Index Search API
=======================
Search
------
.. http:get:: /v1/search
2013-05-02 14:32:38 -04:00
Search the Index given a search term. It accepts :http:method:`get` only.
2013-05-02 14:32:38 -04:00
**Example request**:
2013-05-02 14:32:38 -04:00
.. sourcecode:: http
GET /v1/search?q=search_term HTTP/1.1
Host: example.com
Accept: application/json
**Example response**:
.. sourcecode:: http
HTTP/1.1 200 OK
Vary: Accept
Content-Type: application/json
{"query":"search_term",
"num_results": 2,
"results" : [
{"name": "dotcloud/base", "description": "A base ubuntu64 image..."},
{"name": "base2", "description": "A base ubuntu64 image..."},
]
}
2013-05-09 17:05:20 -07:00
:query q: what you want to search for
:statuscode 200: no error
:statuscode 500: server error