# SSP Relay Development

- [Overview](https://sspwallet.gitbook.io/docs/ssp-relay-development/overview.md)
- [Environment Requirements](https://sspwallet.gitbook.io/docs/ssp-relay-development/environment-requirements.md)
- [Project Installation](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-installation.md)
- [Project Structure Overview](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-structure-0verview.md)
- [Project Folders](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders.md): Project Folder Sections
- [Config](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/config.md): A folder that contains all the configuration and secrets needed by SSP Relay during runtime
- [Helpers](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/helpers.md): A folder that contains all action helpers needed by SSP Relay during runtime
- [Logs](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/logs.md): A folder that contains all log files for SSP Relay
- [Src](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src.md): A folder that contains all src services needed by SSP Relay during runtime
- [apiServices](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/apiservices.md): The following files are inside the apiServices folder
- [lib](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/lib.md): The following files are inside the lib folder
- [services](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/services.md): The following files are inside the services folder
- [routes.ts](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts.md): An overview of routes.ts endpoints
- [GET /v1/sync](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-sync.md): Retrieve sync data using wallet identity id
- [GET /v1/action](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-action.md): Retrieve action data using id
- [POST /v1/sync](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/post-v1-sync.md): Sync using data specified in the request body
- [POST /v1/token](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/post-v1-token.md): Post token using data specified in the request body
- [POST /v1/action](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/post-v1-action.md): Post action using data specified in the request body
- [GET /v1/rates](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-rates.md): Retrieve rates of fiat and crypto
- [GET /v1/networkfees](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-networkfees.md): Retrieve network fees
- [POST /v1/ticket](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/post-v1-ticket.md): Create ticket using data specified in the request body
- [GET /v1/tokeninfo](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-tokeninfo.md): Retrieve token info from alchemy
- [GET /v1/services](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-services.md): Retrieve services status
- [POST /v1/sign](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/post-v1-sign.md): Retrieve services status
- [Tests](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/tests.md): A folder that contains all tests files for SSP Relay
- [unit](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/tests/unit.md): The following files are inside the unit folder


---

# 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://sspwallet.gitbook.io/docs/ssp-relay-development.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.
