GA
Global API
DocsGet Started

cURL Examples

cURL Examples

Quick command-line tests.

Chat Completion

curl https://global-apis.com/v1/chat/completions \\

-H "Authorization: Bearer ga_xxxxxxxxxxxx" \\

-H "Content-Type: application/json" \\

-d '{

"model": "deepseek-chat",

"messages": [{"role": "user", "content": "Hello!"}],

"max_tokens": 100

}'

Streaming

curl https://global-apis.com/v1/chat/completions \\

-H "Authorization: Bearer ga_xxxxxxxxxxxx" \\

-H "Content-Type: application/json" \\

-d '{

"model": "deepseek-chat",

"messages": [{"role": "user", "content": "Count to 3"}],

"stream": true

}'

List Models

curl https://global-apis.com/v1/models \\

-H "Authorization: Bearer ga_xxxxxxxxxxxx"

Get Started Free →