> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.ripio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Countries

> Lists the active countries available in the platform.

---

**Authorization**

- No API key required — this endpoint is public.



## OpenAPI

````yaml get /trade/public/countries
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /trade/public/countries:
    get:
      tags:
        - Ripio Trade
      summary: Public - Countries
      description: |-
        Lists the active countries available in the platform.

        ---

        **Authorization**

        - No API key required — this endpoint is public.
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Ok
                properties:
                  data:
                    items:
                      properties:
                        name:
                          description: Name of the country
                          type: string
                        code:
                          description: Acronym of the country
                          type: string
                      required:
                        - name
                        - code
                      type: object
                      example:
                        name: Brazil
                        code: BR
                    type: array
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````