AI Engineer Guide

How to use GLM-5 for free with Modal

You can use GLM-5 model for free with Modal.com until April 30th, 2026

Just head over to: https://modal.com/glm-5-endpoint and get your API key by logging into your Modal account (even free account is enough)

2026-02-13-at-21.27.28.png

Once you’ve the API key you can use it using this API endpoint

curl -X POST "https://api.us-west-2.modal.direct/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $MODAL_RESEARCH_API_KEY" \
  -d '{
    "model": "zai-org/GLM-5-FP8",
    "messages": [
      {
        "role": "user",
        "content": "How many r-s are in strawberry?"
      }
    ],
    "max_tokens": 500
  }'

And you can view the requests in the web app itself as well. 2026-02-13-at-21.32.47.png

Reference

#Modal #Glm-5

Stay Updated

Get the latest AI engineering insights delivered to your inbox.

No spam. Unsubscribe at any time.