# Manager

## Manager Details

> \## Get Manager Details\
> \
> This endpoint retrieves detailed information about a football manager based on their unique identifier.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: \`GET\`\
> &#x20;   \
> \- \*\*Endpoint\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/manager/:id\\`\\>
> &#x20;   \
> \- \*\*Path Parameter\*\*:\
> &#x20;   \
> &#x20;   \- \`id\` (required): The unique identifier of the manager whose details are to be fetched.\
> &#x20;       \
> \
> \### Response\
> \
> The response will return a JSON object with the following structure:\
> \
> \- \*\*status\*\*: Indicates the success of the request (boolean).\
> &#x20;   \
> \- \*\*statusCode\*\*: A numerical code representing the status of the response (integer).\
> &#x20;   \
> \- \*\*message\*\*: A message providing additional context (string).\
> &#x20;   \
> \- \*\*response\*\*: An object containing the manager's details, including:\
> &#x20;   \
> &#x20;   \- \*\*name\*\*: The full name of the manager (string).\
> &#x20;       \
> &#x20;   \- \*\*shortName\*\*: A shorter version of the manager's name (string).\
> &#x20;       \
> &#x20;   \- \*\*teams\*\*: An array of teams associated with the manager, where each team object includes:\
> &#x20;       \
> &#x20;       \- \*\*name\*\*: The name of the team (string).\
> &#x20;           \
> &#x20;       \- \*\*shortName\*\*: The short name of the team (string).\
> &#x20;           \
> &#x20;       \- \*\*gender\*\*: The gender category of the team (string).\
> &#x20;           \
> &#x20;       \- \*\*category\*\*: An object containing details about the team category (name, id, flag, alpha2).\
> &#x20;           \
> &#x20;       \- \*\*tournament\*\*: An object detailing the tournament information associated with the team.\
> &#x20;           \
> &#x20;       \- \*\*isLive\*\*: Indicates if the team is currently active (boolean).\
> &#x20;           \
> &#x20;       \- \*\*id\*\*: The unique identifier of the team (integer).\
> &#x20;           \
> &#x20;   \- \*\*preferredFormation\*\*: The formation preferred by the manager (string).\
> &#x20;       \
> &#x20;   \- \*\*deceased\*\*: Indicates if the manager is deceased (boolean).\
> &#x20;       \
> &#x20;   \- \*\*id\*\*: The unique identifier of the manager (integer).\
> &#x20;       \
> &#x20;   \- \*\*country\*\*: An object containing the country information (alpha2, name).\
> &#x20;       \
> &#x20;   \- \*\*performance\*\*: An object summarizing the manager's performance metrics (total wins, draws, losses, goals scored, goals conceded, total points).\
> &#x20;       \
> &#x20;   \- \*\*dateOfBirthTimestamp\*\*: The timestamp of the manager's date of birth (integer).

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Manager"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/manager/{id}":{"get":{"tags":["Manager"],"summary":"Manager Details","description":"## Get Manager Details\n\nThis endpoint retrieves detailed information about a football manager based on their unique identifier.\n\n### Request\n\n- **Method**: `GET`\n    \n- **Endpoint**: `https://apiv3.sportsapi360.com/football/api/v1/manager/:id`\n    \n- **Path Parameter**:\n    \n    - `id` (required): The unique identifier of the manager whose details are to be fetched.\n        \n\n### Response\n\nThe response will return a JSON object with the following structure:\n\n- **status**: Indicates the success of the request (boolean).\n    \n- **statusCode**: A numerical code representing the status of the response (integer).\n    \n- **message**: A message providing additional context (string).\n    \n- **response**: An object containing the manager's details, including:\n    \n    - **name**: The full name of the manager (string).\n        \n    - **shortName**: A shorter version of the manager's name (string).\n        \n    - **teams**: An array of teams associated with the manager, where each team object includes:\n        \n        - **name**: The name of the team (string).\n            \n        - **shortName**: The short name of the team (string).\n            \n        - **gender**: The gender category of the team (string).\n            \n        - **category**: An object containing details about the team category (name, id, flag, alpha2).\n            \n        - **tournament**: An object detailing the tournament information associated with the team.\n            \n        - **isLive**: Indicates if the team is currently active (boolean).\n            \n        - **id**: The unique identifier of the team (integer).\n            \n    - **preferredFormation**: The formation preferred by the manager (string).\n        \n    - **deceased**: Indicates if the manager is deceased (boolean).\n        \n    - **id**: The unique identifier of the manager (integer).\n        \n    - **country**: An object containing the country information (alpha2, name).\n        \n    - **performance**: An object summarizing the manager's performance metrics (total wins, draws, losses, goals scored, goals conceded, total points).\n        \n    - **dateOfBirthTimestamp**: The timestamp of the manager's date of birth (integer).","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"id","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Manager Career

> \## Get Manager Career Details\
> \
> This endpoint retrieves the career details of a football manager identified by their unique ID.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: \`GET\`\
> &#x20;   \
> \- \*\*Endpoint\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/manager/career/:id\\`\\>
> &#x20;   \
> \- \*\*Path Parameter\*\*:\
> &#x20;   \
> &#x20;   \- \`id\` (required): The unique identifier of the manager whose career details are being requested.\
> &#x20;       \
> \
> \### Response\
> \
> On success, the response will return a JSON object with the following structure:\
> \
> \- \*\*status\*\*: A boolean indicating the success of the request.\
> &#x20;   \
> \- \*\*statusCode\*\*: An integer representing the status code of the response.\
> &#x20;   \
> \- \*\*message\*\*: A string providing additional information about the request (if any).\
> &#x20;   \
> \- \*\*response\*\*: An array containing the career details of the manager, where each item includes:\
> &#x20;   \
> &#x20;   \- \*\*team\*\*: An object with details about the team, including:\
> &#x20;       \
> &#x20;       \- \`name\`: The name of the team.\
> &#x20;           \
> &#x20;       \- \`shortName\`: The abbreviated name of the team.\
> &#x20;           \
> &#x20;       \- \`gender\`: The gender category of the team.\
> &#x20;           \
> &#x20;       \- \`nameCode\`: A code representing the name of the team.\
> &#x20;           \
> &#x20;       \- \`disabled\`: A boolean indicating if the team is disabled.\
> &#x20;           \
> &#x20;       \- \`national\`: A boolean indicating if the team is a national team.\
> &#x20;           \
> &#x20;       \- \`type\`: An integer representing the type of team.\
> &#x20;           \
> &#x20;       \- \`id\`: The unique identifier of the team.\
> &#x20;           \
> &#x20;   \- \*\*performance\*\*: An object summarizing the manager's performance, including:\
> &#x20;       \
> &#x20;       \- \`total\`: Total number of matches managed.\
> &#x20;           \
> &#x20;       \- \`wins\`: Total number of matches won.\
> &#x20;           \
> &#x20;       \- \`draws\`: Total number of matches drawn.\
> &#x20;           \
> &#x20;       \- \`losses\`: Total number of matches lost.\
> &#x20;           \
> &#x20;       \- \`totalPoints\`: Total points accumulated.\
> &#x20;           \
> \
> This response structure allows consumers of the API to easily understand the career trajectory and performance metrics of the specified football manager.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Manager"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/manager/career/{id}":{"get":{"tags":["Manager"],"summary":"Manager Career","description":"## Get Manager Career Details\n\nThis endpoint retrieves the career details of a football manager identified by their unique ID.\n\n### Request\n\n- **Method**: `GET`\n    \n- **Endpoint**: `https://apiv3.sportsapi360.com/football/api/v1/manager/career/:id`\n    \n- **Path Parameter**:\n    \n    - `id` (required): The unique identifier of the manager whose career details are being requested.\n        \n\n### Response\n\nOn success, the response will return a JSON object with the following structure:\n\n- **status**: A boolean indicating the success of the request.\n    \n- **statusCode**: An integer representing the status code of the response.\n    \n- **message**: A string providing additional information about the request (if any).\n    \n- **response**: An array containing the career details of the manager, where each item includes:\n    \n    - **team**: An object with details about the team, including:\n        \n        - `name`: The name of the team.\n            \n        - `shortName`: The abbreviated name of the team.\n            \n        - `gender`: The gender category of the team.\n            \n        - `nameCode`: A code representing the name of the team.\n            \n        - `disabled`: A boolean indicating if the team is disabled.\n            \n        - `national`: A boolean indicating if the team is a national team.\n            \n        - `type`: An integer representing the type of team.\n            \n        - `id`: The unique identifier of the team.\n            \n    - **performance**: An object summarizing the manager's performance, including:\n        \n        - `total`: Total number of matches managed.\n            \n        - `wins`: Total number of matches won.\n            \n        - `draws`: Total number of matches drawn.\n            \n        - `losses`: Total number of matches lost.\n            \n        - `totalPoints`: Total points accumulated.\n            \n\nThis response structure allows consumers of the API to easily understand the career trajectory and performance metrics of the specified football manager.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"id","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```


---

# 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://docsv3.sportsapi360.com/football-docs/api-collection-football/manager.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.
