Ollama website screenshot

Ollama

API for running large language models locally.

4 APIs 0 Features
Artificial IntelligenceLarge Language ModelsModels

APIs

Ollama API

Ollama provides a REST API for running and managing large language models locally. The API supports text generation, chat completions, embeddings, model management, and streamin...

Ollama OpenAI Compatibility API

Ollama provides compatibility with parts of the OpenAI API, allowing existing applications built for OpenAI to connect to locally-running models through Ollama. Supported endpoi...

Ollama Anthropic Compatibility API

Ollama provides compatibility with the Anthropic Messages API, enabling tools like Claude Code to work with locally-running open-source models. Supports messages, streaming, sys...

Ollama Cloud API

Ollama Cloud provides cloud-hosted inference for large language models, giving access to larger models and faster responses without requiring a powerful local GPU. Cloud models ...

Collections

Ollama API

OPEN

Pricing Plans

Ollama Plans Pricing

4 plans

PLANS

Rate Limits

Ollama Rate Limits

5 limits

RATE LIMITS

FinOps

Ollama Finops

FINOPS

Resources

🔗
Website
Website
🔗
Documentation
Documentation
💬
FAQ
FAQ
🔗
Login
Login
📝
Signup
Signup
💰
Pricing
Pricing
👥
GitHub
GitHub
📰
Blog
Blog
🔗
Models
Models
🔗
OpenAPI
OpenAPI
🚀
GettingStarted
GettingStarted
🔑
Authentication
Authentication
💰
Pricing
Pricing
🔗
Downloads
Downloads
🔗
Models
Models
📰
Blog
Blog
📄
ChangeLog
ChangeLog
🔗
Security
Security
📦
PythonSDK
PythonSDK
📦
JavaScriptSDK
JavaScriptSDK
🔗
Discord
Discord
🔗
Reddit
Reddit
🔗
X
X
🔗
LinkedIn
LinkedIn
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Docker
Docker
🔗
Documentation
Documentation
🔗
CLI
CLI
🔗
Documentation
Documentation
🔗
Troubleshooting
Troubleshooting
🔗
Documentation
Documentation
🔗
Documentation
Documentation
📦
Dart SDK
Dart SDK
📦
Swift SDK
Swift SDK
👥
StackOverflow
StackOverflow
👥
YouTube
YouTube
👥
GitHubOrganization
GitHubOrganization
🔗
Issue Tracker
Issue Tracker
🔗
Events
Events
📦
Go SDK
Go SDK
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Ollama OpenAI Compatibility API
  version: 0.1.0
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Chat Completions
    type: folder
  items:
  - info:
      name: Ollama Create chat completion
      type: http
    http:
      method: POST
      url: http://localhost:11434/v1/chat/completions
      body:
        type: json
        data: '{}'
    docs: Creates a model response for the given chat conversation. Supports streaming, JSON mode, structured output, vision,
      and tool calling. Compatible with the OpenAI Chat Completions API format.
- info:
    name: Completions
    type: folder
  items:
  - info:
      name: Ollama Create completion
      type: http
    http:
      method: POST
      url: http://localhost:11434/v1/completions
      body:
        type: json
        data: '{}'
    docs: Creates a completion for the provided prompt. Compatible with the OpenAI Completions API format. Supports streaming,
      JSON mode, and reproducible outputs.
- info:
    name: Embeddings
    type: folder
  items:
  - info:
      name: Ollama Create embeddings
      type: http
    http:
      method: POST
      url: http://localhost:11434/v1/embeddings
      body:
        type: json
        data: '{}'
    docs: Creates an embedding vector representing the input text. Compatible with the OpenAI Embeddings API format.
- info:
    name: Models
    type: folder
  items:
  - info:
      name: Ollama List models
      type: http
    http:
      method: GET
      url: http://localhost:11434/v1/models
    docs: Lists the currently available models and provides basic information about each one. Compatible with the OpenAI List
      Models API format.
  - info:
      name: Ollama Retrieve a model
      type: http
    http:
      method: GET
      url: http://localhost:11434/v1/models/:model
      params:
      - name: model
        value: ''
        type: path
        description: The identifier of the model to retrieve.
    docs: Retrieves a model instance, providing basic information about the model. Compatible with the OpenAI Retrieve Model
      API format.
- info:
    name: Images
    type: folder
  items:
  - info:
      name: Ollama Create image
      type: http
    http:
      method: POST
      url: http://localhost:11434/v1/images/generations
      body:
        type: json
        data: '{}'
    docs: Creates an image given a text prompt. This is an experimental endpoint that may change or be removed. Only supports
      b64_json response format.
- info:
    name: Responses
    type: folder
  items:
  - info:
      name: Ollama Create response
      type: http
    http:
      method: POST
      url: http://localhost:11434/v1/responses
      body:
        type: json
        data: '{}'
    docs: Creates a structured response with optional reasoning. Supports streaming, tool calling, and reasoning summaries.
      Compatible with the OpenAI Responses API format. Added in Ollama v0.13.3.
bundled: true