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

# List Origins



## OpenAPI

````yaml get /v1/origins
openapi: 3.1.0
info:
  version: 1.0.0
  title: every public api
servers:
  - url: https://api.goevery.co
security:
  - bearerAuth: []
paths:
  /v1/origins:
    get:
      parameters:
        - schema:
            type:
              - number
              - 'null'
            exclusiveMinimum: 0
            maximum: 1000
            example: 100
          required: false
          name: pageSize
          in: query
          description: >-
            The maximum number of origins to return. Defaults to 100 if not
            specified. Must be a positive number and not exceed 1000.
        - schema:
            type:
              - string
              - 'null'
          required: false
          name: pageToken
          in: query
          description: A token to retrieve the next page of results. Used for pagination.
      responses:
        '200':
          description: Successfully retrieved list of locations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListOriginsResponse'
components:
  schemas:
    ListOriginsResponse:
      type: object
      properties:
        origins:
          type: array
          items:
            $ref: '#/components/schemas/Origin'
          description: An array of origins.
        nextPageToken:
          type:
            - string
            - 'null'
          description: A token to retrieve the next page of results, if any.
      required:
        - origins
    Origin:
      type: object
      properties:
        name:
          type: string
          description: The unique identifier for the origin.
          example: origins/66343b5ac38abe08414dc303
        location:
          type: string
          description: >-
            The unique identifier for the location, including the country and
            postal code.
          example: locations/CO-54003000
        address:
          type: object
          properties:
            regionCode:
              type: string
              description: >-
                The ISO 3166-1 alpha-2 region code representing the country or
                territory.
              example: CO
            administrativeArea:
              type: string
              description: >-
                The primary administrative division, such as a state or
                province, within the region.
              example: Antioquia
            locality:
              type: string
              description: The specific city, town, or municipality.
              example: Abejorral
            addressLines:
              type: array
              items:
                type: string
              description: >-
                Two lines detailing the specific street address, including
                street name, building number, apartment or suite number, and any
                other relevant details.
              example:
                - Calle 123
                - Apto 2
            organization:
              type: string
              description: >-
                The name of the organization associated with this address, if
                applicable.
              example: Happeett
          required:
            - regionCode
            - administrativeArea
            - locality
            - addressLines
            - organization
          description: The detailed address information for the origin.
      required:
        - name
        - location
        - address
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````