> For the complete documentation index, see [llms.txt](https://dos-op.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dos-op.gitbook.io/docs/products/smart-search/search-request.md).

# Search Request

Create a new **Smart Search** request. This endpoint starts a search job

## POST /api/products/search

> Create Smart Search Task

```json
{"openapi":"3.0.3","info":{"title":"DOS-OP Platform API","version":"1.0.0"},"tags":[{"name":"Smart Search","description":"Enrichment OSINT Engine Search APIs"}],"servers":[{"url":"https://api.dos-op.io"}],"security":[{"ApiKeyAuth":[]}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"x-api-key"}},"schemas":{"SearchRequest":{"type":"object","required":["type","search"],"properties":{"type":{"$ref":"#/components/schemas/SearchType"},"search":{"type":"string"}}},"SearchType":{"type":"string","enum":["NAME_OR_ADDRESS","PHONE","EMAIL"]},"SearchResponse":{"type":"object","properties":{"searchId":{"type":"integer"},"status":{"type":"string"},"createdAt":{"type":"string","format":"date-time"}}}}},"paths":{"/api/products/search":{"post":{"summary":"Create Smart Search Task","operationId":"createSearch","tags":["Smart Search"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchRequest"}}}},"responses":{"200":{"description":"Search created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchResponse"}}}}}}}}}
```
