Grok 4.3

Model Information

Display Name: Grok 4.3

API Model ID: x-ai/grok-4.3

Category: Image To Text

Description: Grok 4.3 is a reasoning model from xAI suited for agentic workflows, instruction following and tasks that need high factual accuracy. It accepts text, image and file input with a 1M-token context window. **Key Features:** - 1,000,000-token context window - Reasoning that can be turned on or off per request - Multimodal input: text, image and file - Function/tool calling and structured outputs (JSON schema) - Prompt caching for cheaper repeated context **Best For:** - Agentic workflows and tool use - Instruction-following tasks at scale - Repository- and document-scale analysis - General-purpose chat with optional deep reasoning

Context Window: 1,000,000 tokens

How to Use This Model

To use Grok 4.3 via the HInow.ai API, use the model ID: x-ai/grok-4.3

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "x-ai/grok-4.3",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "x-ai/grok-4.3",
  "prompt": "Your image description here"
}
              

Pricing

  • input: $1.82
  • output: $3.63

Available Parameters

  • temperature: Controls randomness (0-2) (Options: 0, 0.3, 0.5, 0.7, 1.0)
  • top_p: Nucleus sampling (0-1) (Options: 0.1, 0.5, 0.9, 0.95, 1.0)
  • max_tokens: Max tokens to generate, including reasoning (Options: 512, 1024, 2048, 4096, 8192, 16384, 32768)
  • reasoning_effort: Reasoning depth when reasoning is enabled (Options: low, medium, high)
  • frequency_penalty: Penalizes tokens by frequency (-2 to 2). Default: 0 (Options: 0, 0.5, 1.0)
  • presence_penalty: Penalizes tokens already present (-2 to 2). Default: 0 (Options: 0, 0.5, 1.0)
  • seed: Integer seed for reproducible sampling
  • tools: Function/tool definitions for agentic workflows
  • response_format: Output format (structured outputs supported) (Options: text, json_object, json_schema)
  • stop: Sequences where the API stops generating further tokens

Quick Reference

To use this model, set: "model": "x-ai/grok-4.3"

Featured: No

Documentation: https://hinow.ai/models/x-ai/grok-4.3

API Endpoint: https://api.hinow.ai/v1

Back to Models
Grok 4.3

Grok 4.3

x-ai/grok-4.3

$1.82 / $3.63
per 1M tokens (in/out)

About

Grok 4.3 is a reasoning model from xAI suited for agentic workflows, instruction following and tasks that need high factual accuracy. It accepts text, image and file input with a 1M-token context window.

Key Features:

  • 1,000,000-token context window
  • Reasoning that can be turned on or off per request
  • Multimodal input: text, image and file
  • Function/tool calling and structured outputs (JSON schema)
  • Prompt caching for cheaper repeated context

Best For:

  • Agentic workflows and tool use
  • Instruction-following tasks at scale
  • Repository- and document-scale analysis
  • General-purpose chat with optional deep reasoning

Capabilities

Image To TextText To Text
Context1000K tokens

Parameters

temperature

Controls randomness (0-2)

00.30.50.71.0
top_p

Nucleus sampling (0-1)

0.10.50.90.951.0
max_tokens

Max tokens to generate, including reasoning

51210242048409681921638432768
reasoning_effort

Reasoning depth when reasoning is enabled

lowmediumhigh
frequency_penalty

Penalizes tokens by frequency (-2 to 2). Default: 0

00.51.0
presence_penalty

Penalizes tokens already present (-2 to 2). Default: 0

00.51.0
seed

Integer seed for reproducible sampling

tools

Function/tool definitions for agentic workflows

response_format

Output format (structured outputs supported)

textjson_objectjson_schema
stop

Sequences where the API stops generating further tokens

Code Examples

curl -X POST https://api.hinow.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "x-ai/grok-4.3",
    "messages": [
      {
        "role": "user",
        "content": [
          {"type": "text", "text": "Describe this image"},
          {"type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}}
        ]
      }
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "512",
      "reasoning_effort": "low",
      "frequency_penalty": "0",
      "presence_penalty": "0",
      "seed": "",
      "tools": "",
      "response_format": "text",
      "stop": ""
    }
  }'