Skip to main content

Foxdeli API Clients and Code Generation

Foxdeli empowers developers with convenient integration options through two approaches:

  1. Pre-built SDKs:

We offer ready-made SDKs for various programming languages. These pre-built libraries provide a convenient starting point, saving you time and effort during integration.
You can find the pre-built SDKs at GitHub:

  1. OpenAPI Specification for Client Generation:

The Foxdeli API reference provides OpenAPI specification files. These files can be used with the OpenAPI Generator to generate client code in your preferred language. This approach offers greater flexibility, allowing you to generate client code for languages beyond our pre-built options.

Generating Your Client Code

To create a client using the OpenAPI Generator, follow these steps:

Install the OpenAPI Generator CLI: Refer to the installation guide (https://openapi-generator.tech/docs/installation/) for your operating system. Choose your desired language: The OpenAPI Generator supports a wide range of languages (https://openapi-generator.tech/docs/generators#client-generators). Run the generation command:

openapi-generator-cli generate \
-g <language> \
-i https://api.foxdeli.com/tracking/api-docs/orders \
-o ./<client_name>
Replace the placeholders:
  • <language>: Your chosen programming language (e.g., java, php, csharp, kotlin, go, javascript, typescript-axios).
  • <client_name>: A descriptive name for your generated client code (e.g., foxdelitrackclient).

This will generate the client code in your chosen language within the specified output directory.

Additional Resources

By following these steps and leveraging the available resources, you can quickly and easily generate client code tailored to your specific needs, facilitating seamless integration of the Foxdeli API into your applications.