Azure AI Search website screenshot

Azure AI Search

Azure AI Search (formerly Azure Cognitive Search) is a cloud search service with built-in AI capabilities for enriching content and enabling vector and semantic search over heterogeneous data. It indexes content from Azure data sources and supports full-text, faceted, geospatial, vector, and hybrid retrieval.

2 APIs 0 Features
AI SearchCognitive SearchHybrid SearchSearchSemantic SearchVector Search

APIs

Azure AI Search REST API

Azure AI Search provides REST APIs for creating and managing search indexes, loading documents, running full-text and vector queries, configuring AI enrichment pipelines with sk...

Azure AI Search Management REST API

The management REST API provides operations for creating and managing Azure AI Search service instances, scaling replicas and partitions, and managing keys and shared private li...

Collections

Pricing Plans

Rate Limits

Microsoft Azure Search Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🌐
Portal
Portal
💰
Pricing
Pricing
🔗
Documentation
Documentation
🚀
GettingStarted
GettingStarted
📦
SDKs
SDKs
🟢
StatusPage
StatusPage
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
💬
Support
Support
📰
Blog
Blog
👥
StackOverflow
StackOverflow

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Azure AI Search REST API
  version: '2024-07-01'
request:
  auth:
    type: apikey
    key: api-key
    value: '{{api-key}}'
    placement: header
items:
- info:
    name: Indexes
    type: folder
  items:
  - info:
      name: Search List indexes
      type: http
    http:
      method: GET
      url: https://{search-service}.search.windows.net/indexes
      params:
      - name: api-version
        value: ''
        type: query
    docs: Lists all indexes.
  - info:
      name: Search Create index
      type: http
    http:
      method: POST
      url: https://{search-service}.search.windows.net/indexes
      params:
      - name: api-version
        value: ''
        type: query
      body:
        type: json
        data: '{}'
    docs: Creates a new search index.
  - info:
      name: Search Get index
      type: http
    http:
      method: GET
      url: https://{search-service}.search.windows.net/indexes(':indexName')
      params:
      - name: indexName
        value: ''
        type: path
      - name: api-version
        value: ''
        type: query
    docs: Gets index definition.
  - info:
      name: Search Create or update index
      type: http
    http:
      method: PUT
      url: https://{search-service}.search.windows.net/indexes(':indexName')
      params:
      - name: indexName
        value: ''
        type: path
      - name: api-version
        value: ''
        type: query
      body:
        type: json
        data: '{}'
    docs: Creates or updates an index.
  - info:
      name: Search Delete index
      type: http
    http:
      method: DELETE
      url: https://{search-service}.search.windows.net/indexes(':indexName')
      params:
      - name: indexName
        value: ''
        type: path
      - name: api-version
        value: ''
        type: query
    docs: Deletes an index.
- info:
    name: Documents
    type: folder
  items:
  - info:
      name: Search Index documents
      type: http
    http:
      method: POST
      url: https://{search-service}.search.windows.net/indexes(':indexName')/docs/search.index
      params:
      - name: indexName
        value: ''
        type: path
      - name: api-version
        value: ''
        type: query
      body:
        type: json
        data: '{}'
    docs: Adds, merges, or deletes documents in an index.
  - info:
      name: Search Search documents
      type: http
    http:
      method: GET
      url: https://{search-service}.search.windows.net/indexes(':indexName')/docs
      params:
      - name: indexName
        value: ''
        type: path
      - name: api-version
        value: ''
        type: query
      - name: search
        value: ''
        type: query
    docs: Searches documents in an index.
bundled: true