Current location: Home> Grok Tutorial> Grok API access tutorial

Grok API access tutorial

Author: LoRA Time: 03 Apr 2025

To access the application into the Grok API, follow the following steps (the specific details may vary with the update of the Grok API):

Log in

1.png

Click Try now or click API to jump to the login page

1743491144441741.png

Create API

Click to create API icon》create key

1.png

Enter your own API custom name, and then all the default configurations will be done in the next step.

1743494580789780.png

Save your own key, the key will only be displayed once by default. Remember to save it

1.png

The list will be displayed after success

1.png

Call

Postman way

1. Create a post request, request type: application/json

2. Set Authorization, type: Bearar Token, enter API key

1.png

3. Send test json data

 {
  "messages": [
    {
      "role": "system",
      "content": "Custom request class content"
    },
    {
      "role": "user",
      "content": "Custom request content"
    }
  ],
  "model": "grok-beta",
  "stream": false,
  "temperature": 0
}

4. Return the result

1.png