Look up the Roblox engine API
get_engine_apiLook up live Roblox API signatures to verify class members, parameter types, security, and thread safety. Confirm existence, deprecation, and server-only restrictions before writing Luau.
Instructions
Authoritative signature lookup from the live Roblox API dump: a class's properties, methods, events and callbacks with parameter types, security level, deprecation and thread safety. Use this to confirm a method exists, check whether it is deprecated or server-only, or find the right member name before writing Luau.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Class name (e.g. DataStoreService, Humanoid), Enum name (e.g. RaycastFilterType), or a single member as "Humanoid.LoadAnimation" / "Humanoid:LoadAnimation", which narrows the lookup to that member. | |
| filter | No | Only members whose name contains this substring. | |
| max_tokens | No | ||
| member_types | No | Restrict to these member kinds. | |
| include_inherited | No | Include members inherited from superclasses. |