# Taxi

## get\_taxi()

This function allows you to retrieve the player's in your taxi party.

#### Usage

`get_taxi()`

#### Returns

`None` or a dictionary of players in the party taxi. Some values will not be present if the player is not in your party.

`remaining` is the time remaining in seconds.

`party` will be set to `True` or `False` depending on if they are in your party or not.

`player_id` can be `0` if you have not seen the player in game.

```
 {
 	'zzzzzzzz': {
 		'remaining': 3597,
 		'exchanging': False,
 		'party': True,
 		'party_id': 6,
 		'player_id': 38859,
 		'level': 90,
 		'dead': False,
 		'x': 6435.7001953125,
 		'y': 912.0999755859375
 	}
 }
```

```
{
	'zzzzzzzz': {
		'remaining': 3597,
		'exchanging': False,
		'party': False
	}
}
```


---

# 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://plugins.phbot.org/phbot-api/taxi.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.
