# Client Exports

```lua
local lib = exports["jl_lib"]:GetLib()

-- Add Blips
local blipData = {
    coords = vector3(100.0, 200.0, 300.0),
    sprite = 1,
    colour = 3,
    label = "My Blip"
}

local blipId = lib.AddBlip(blipData)

-- Get Blips
local getBlip = lib.GetBlip(blipId)
print(getBlip.label) 

-- Remove Blip
lib.RemoveBlip(blipId)

-- Get Entites
local entityData = lib.GetEntities({"ped", "vehicle"})
if entityData.success then
    for _, vehicle in pairs(entityData.entities.vehicle) do
        print("Found vehicle with ID: ", vehicle)
    end
end

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jl-store.gitbook.io/jl-illegalphone/jl_lib/client-exports.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
